#ifndef CHROME_COMMON_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_MANIFEST_HANDLER_H_
#define CHROME_COMMON_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_MANIFEST_HANDLER_H_
#include <string>
#include <vector>
#include "extensions/common/manifest_handler.h"
namespace extensions {
class Extension;
class ManifestPermission;
}
namespace extensions {
class BluetoothManifestHandler : public ManifestHandler {
public:
BluetoothManifestHandler();
virtual ~BluetoothManifestHandler();
virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
virtual ManifestPermission* CreatePermission() OVERRIDE;
virtual ManifestPermission* CreateInitialRequiredPermission(
const Extension* extension) OVERRIDE;
private:
virtual const std::vector<std::string> Keys() const OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(BluetoothManifestHandler);
};
}
#endif