Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1045)

Unified Diff: chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h

Issue 420663003: Extensions: Move bluetooth APIs to extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix android, gn Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698