| Index: content/browser/devtools/protocol/io_handler.h
|
| diff --git a/content/browser/devtools/protocol/io_handler.h b/content/browser/devtools/protocol/io_handler.h
|
| index 951df505dfa26b5696996a06fb457a8adfdd9983..e952bd0637271bcea280406edf8b8e86bf9dc2c5 100644
|
| --- a/content/browser/devtools/protocol/io_handler.h
|
| +++ b/content/browser/devtools/protocol/io_handler.h
|
| @@ -26,7 +26,7 @@ class IOHandler {
|
| explicit IOHandler(DevToolsIOContext* io_context);
|
| ~IOHandler();
|
|
|
| - void SetClient(scoped_ptr<Client> client);
|
| + void SetClient(std::unique_ptr<Client> client);
|
|
|
| // Protocol methods.
|
| Response Read(DevToolsCommandId command_id, const std::string& handle,
|
| @@ -37,7 +37,7 @@ class IOHandler {
|
| void ReadComplete(DevToolsCommandId command_id,
|
| const scoped_refptr<base::RefCountedString>& data, int status);
|
|
|
| - scoped_ptr<Client> client_;
|
| + std::unique_ptr<Client> client_;
|
| DevToolsIOContext* io_context_;
|
| base::WeakPtrFactory<IOHandler> weak_factory_;
|
|
|
|
|