Index: chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h |
diff --git a/chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h b/chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h |
deleted file mode 100644 |
index 5c22645ccaf002bbf695b15fab2963a11d7fe011..0000000000000000000000000000000000000000 |
--- a/chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h |
+++ /dev/null |
@@ -1,69 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef CHROME_COMMON_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_MANIFEST_PERMISSION_H_ |
-#define CHROME_COMMON_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_MANIFEST_PERMISSION_H_ |
- |
-#include <set> |
-#include <vector> |
- |
-#include "extensions/common/install_warning.h" |
-#include "extensions/common/permissions/manifest_permission.h" |
- |
-namespace extensions { |
-class Extension; |
-} |
- |
-namespace extensions { |
-struct BluetoothPermissionRequest; |
-} |
- |
-namespace extensions { |
- |
-class BluetoothManifestPermission : public ManifestPermission { |
- public: |
- typedef std::set<std::string> BluetoothUuidSet; |
- BluetoothManifestPermission(); |
- virtual ~BluetoothManifestPermission(); |
- |
- // Tries to construct the info based on |value|, as it would have appeared in |
- // the manifest. Sets |error| and returns an empty scoped_ptr on failure. |
- static scoped_ptr<BluetoothManifestPermission> FromValue( |
- const base::Value& value, |
- base::string16* error); |
- |
- bool CheckRequest(const Extension* extension, |
- const BluetoothPermissionRequest& request) const; |
- bool CheckSocketPermitted(const Extension* extension) const; |
- bool CheckLowEnergyPermitted(const Extension* extension) const; |
- |
- void AddPermission(const std::string& uuid); |
- |
- // extensions::ManifestPermission overrides. |
- virtual std::string name() const OVERRIDE; |
- virtual std::string id() const OVERRIDE; |
- virtual bool HasMessages() const OVERRIDE; |
- virtual PermissionMessages GetMessages() const OVERRIDE; |
- virtual bool FromValue(const base::Value* value) OVERRIDE; |
- virtual scoped_ptr<base::Value> ToValue() const OVERRIDE; |
- virtual ManifestPermission* Diff(const ManifestPermission* rhs) |
- const OVERRIDE; |
- virtual ManifestPermission* Union(const ManifestPermission* rhs) |
- const OVERRIDE; |
- virtual ManifestPermission* Intersect(const ManifestPermission* rhs) |
- const OVERRIDE; |
- |
- const BluetoothUuidSet& uuids() const { |
- return uuids_; |
- } |
- |
- private: |
- BluetoothUuidSet uuids_; |
- bool socket_; |
- bool low_energy_; |
-}; |
- |
-} // namespace extensions |
- |
-#endif // CHROME_COMMON_EXTENSIONS_API_BLUETOOTH_BLUETOOTH_MANIFEST_PERMISSION_H_ |