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

Unified Diff: chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.cc

Issue 145663004: Replace "bluetooth" permission with manifest property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused function. Created 6 years, 10 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_data.cc
diff --git a/chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.cc b/chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7794143cddccb09de98f335ea091d819a2175d05
--- /dev/null
+++ b/chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.cc
@@ -0,0 +1,53 @@
+// Copyright 2013 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.
+
+#include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.h"
+
+#include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_permission.h"
+#include "extensions/common/manifest_constants.h"
+
+namespace extensions {
+
+BluetoothManifestData::BluetoothManifestData(
+ scoped_ptr<BluetoothManifestPermission> permission)
+ : permission_(permission.Pass()) {
+ DCHECK(permission_);
+}
+
+BluetoothManifestData::~BluetoothManifestData() {}
+
+// static
+BluetoothManifestData* BluetoothManifestData::Get(const Extension* extension) {
+ return static_cast<BluetoothManifestData*>(
+ extension->GetManifestData(manifest_keys::kBluetooth));
+}
+
+// static
+bool BluetoothManifestData::CheckRequest(
+ const Extension* extension,
+ const BluetoothPermissionRequest& request) {
+ const BluetoothManifestData* data = BluetoothManifestData::Get(extension);
+ return data && data->permission()->CheckRequest(extension, request);
+}
+
+// static
+scoped_ptr<BluetoothManifestData> BluetoothManifestData::FromValue(
+ const base::Value& value,
+ base::string16* error) {
+ scoped_ptr<BluetoothManifestPermission> permission =
+ BluetoothManifestPermission::FromValue(value, error);
+ if (!permission)
+ return scoped_ptr<BluetoothManifestData>();
+
+ return scoped_ptr<BluetoothManifestData>(
+ new BluetoothManifestData(permission.Pass())).Pass();
+}
+
+BluetoothPermissionRequest::BluetoothPermissionRequest(
+ const std::string& profile_uuid)
+ : profile_uuid(profile_uuid) {}
+
+BluetoothPermissionRequest::~BluetoothPermissionRequest() {}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698