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

Unified Diff: extensions/common/api/bluetooth/bluetooth_manifest_permission.cc

Issue 1226353004: Generate all extension schema namespaces as "api" and instead vary the generated bundle names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « extensions/common/api/BUILD.gn ('k') | extensions/common/api/cast_channel/authority_keys.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/api/bluetooth/bluetooth_manifest_permission.cc
diff --git a/extensions/common/api/bluetooth/bluetooth_manifest_permission.cc b/extensions/common/api/bluetooth/bluetooth_manifest_permission.cc
index 60fb04d35eb42f5dc039f1624e566fdffdbc2cb9..9b2e7a34a4bb774efc8ff2f0bfabc0398b4793a1 100644
--- a/extensions/common/api/bluetooth/bluetooth_manifest_permission.cc
+++ b/extensions/common/api/bluetooth/bluetooth_manifest_permission.cc
@@ -67,8 +67,8 @@ BluetoothManifestPermission::~BluetoothManifestPermission() {}
scoped_ptr<BluetoothManifestPermission> BluetoothManifestPermission::FromValue(
const base::Value& value,
base::string16* error) {
- scoped_ptr<core_api::extensions_manifest_types::Bluetooth> bluetooth =
- core_api::extensions_manifest_types::Bluetooth::FromValue(value, error);
+ scoped_ptr<api::extensions_manifest_types::Bluetooth> bluetooth =
+ api::extensions_manifest_types::Bluetooth::FromValue(value, error);
if (!bluetooth)
return scoped_ptr<BluetoothManifestPermission>();
@@ -178,7 +178,7 @@ bool BluetoothManifestPermission::FromValue(const base::Value* value) {
}
scoped_ptr<base::Value> BluetoothManifestPermission::ToValue() const {
- core_api::extensions_manifest_types::Bluetooth bluetooth;
+ api::extensions_manifest_types::Bluetooth bluetooth;
bluetooth.uuids.reset(new std::vector<std::string>(uuids_.begin(),
uuids_.end()));
return bluetooth.ToValue().Pass();
« no previous file with comments | « extensions/common/api/BUILD.gn ('k') | extensions/common/api/cast_channel/authority_keys.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698