| Index: extensions/browser/api/bluetooth/bluetooth_api.cc
|
| diff --git a/extensions/browser/api/bluetooth/bluetooth_api.cc b/extensions/browser/api/bluetooth/bluetooth_api.cc
|
| index ff9780bb6e09650f5c6ccd0457dd178bdd9f38a7..9c5fc508dd7bf84162e24ff1be3e3c172e55880e 100644
|
| --- a/extensions/browser/api/bluetooth/bluetooth_api.cc
|
| +++ b/extensions/browser/api/bluetooth/bluetooth_api.cc
|
| @@ -142,7 +142,7 @@ bool BluetoothGetDeviceFunction::DoWork(
|
| scoped_refptr<BluetoothAdapter> adapter) {
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
| - scoped_ptr<GetDevice::Params> params(GetDevice::Params::Create(*args_));
|
| + std::unique_ptr<GetDevice::Params> params(GetDevice::Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params.get() != NULL);
|
|
|
| BluetoothDevice* device = adapter->GetDevice(params->device_address);
|
|
|