| Index: content/browser/devtools/protocol/tethering_handler.h
|
| diff --git a/content/browser/devtools/protocol/tethering_handler.h b/content/browser/devtools/protocol/tethering_handler.h
|
| index 1d998ac9b1271841b18a2e3c7b36ddd2daf713a5..246fdd31a05f9278a72f68f5bfda1326d17d4bd2 100644
|
| --- a/content/browser/devtools/protocol/tethering_handler.h
|
| +++ b/content/browser/devtools/protocol/tethering_handler.h
|
| @@ -25,7 +25,7 @@ class TetheringHandler {
|
| base::Callback<scoped_ptr<net::ServerSocket>(std::string*)>;
|
|
|
| TetheringHandler(const CreateServerSocketCallback& socket_callback,
|
| - scoped_refptr<base::MessageLoopProxy> message_loop_proxy);
|
| + scoped_refptr<base::SingleThreadTaskRunner> task_runner);
|
| ~TetheringHandler();
|
|
|
| void SetClient(scoped_ptr<Client> client);
|
| @@ -46,7 +46,7 @@ class TetheringHandler {
|
|
|
| scoped_ptr<Client> client_;
|
| CreateServerSocketCallback socket_callback_;
|
| - scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
|
| + scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
|
| bool is_active_;
|
| base::WeakPtrFactory<TetheringHandler> weak_factory_;
|
|
|
|
|