| Index: extensions/browser/api/bluetooth/bluetooth_api.h
|
| diff --git a/extensions/browser/api/bluetooth/bluetooth_api.h b/extensions/browser/api/bluetooth/bluetooth_api.h
|
| index d4f4f1fbb5081b0b2e740a17ae793df40349c7eb..838bd4f4c43f1edc236e85ecb31ecc826982a1a3 100644
|
| --- a/extensions/browser/api/bluetooth/bluetooth_api.h
|
| +++ b/extensions/browser/api/bluetooth/bluetooth_api.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_
|
| #define EXTENSIONS_BROWSER_API_BLUETOOTH_BLUETOOTH_API_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "device/bluetooth/bluetooth_device.h"
|
| #include "extensions/browser/api/bluetooth/bluetooth_extension_function.h"
|
| #include "extensions/browser/browser_context_keyed_api_factory.h"
|
| @@ -61,7 +61,7 @@ class BluetoothAPI : public BrowserContextKeyedAPI,
|
| content::BrowserContext* browser_context_;
|
|
|
| // Created lazily on first access.
|
| - scoped_ptr<BluetoothEventRouter> event_router_;
|
| + std::unique_ptr<BluetoothEventRouter> event_router_;
|
| };
|
|
|
| namespace api {
|
|
|