| Index: content/browser/devtools/protocol/system_info_handler.h
|
| diff --git a/content/browser/devtools/protocol/system_info_handler.h b/content/browser/devtools/protocol/system_info_handler.h
|
| index 40b14e8e3c48e9805f2e7e0c6a5bf8b626afbebb..281d08bbc9582bf18e85addefca8075d00955f50 100644
|
| --- a/content/browser/devtools/protocol/system_info_handler.h
|
| +++ b/content/browser/devtools/protocol/system_info_handler.h
|
| @@ -23,7 +23,7 @@ class SystemInfoHandler {
|
| SystemInfoHandler();
|
| ~SystemInfoHandler();
|
|
|
| - void SetClient(scoped_ptr<Client> client);
|
| + void SetClient(std::unique_ptr<Client> client);
|
|
|
| Response GetInfo(DevToolsCommandId command_id);
|
|
|
| @@ -47,7 +47,7 @@ class SystemInfoHandler {
|
| mutable base::Lock lock_;
|
| std::set<int> active_observers_;
|
|
|
| - scoped_ptr<Client> client_;
|
| + std::unique_ptr<Client> client_;
|
| base::WeakPtrFactory<SystemInfoHandler> weak_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SystemInfoHandler);
|
|
|