Index: extensions/common/api/bluetooth/bluetooth_manifest_handler.cc |
diff --git a/extensions/common/api/bluetooth/bluetooth_manifest_handler.cc b/extensions/common/api/bluetooth/bluetooth_manifest_handler.cc |
index da143fa8c2fb52262f17a4a848b4a9ec88a9bdd3..6a666d9c46fa549432d11c482f7bbb5085f48865 100644 |
--- a/extensions/common/api/bluetooth/bluetooth_manifest_handler.cc |
+++ b/extensions/common/api/bluetooth/bluetooth_manifest_handler.cc |
@@ -19,7 +19,7 @@ bool BluetoothManifestHandler::Parse(Extension* extension, |
base::string16* error) { |
const base::Value* bluetooth = NULL; |
CHECK(extension->manifest()->Get(manifest_keys::kBluetooth, &bluetooth)); |
- scoped_ptr<BluetoothManifestData> data = |
+ std::unique_ptr<BluetoothManifestData> data = |
BluetoothManifestData::FromValue(*bluetooth, error); |
if (!data) |
return false; |