| Index: shell/child_main.cc
|
| diff --git a/shell/child_main.cc b/shell/child_main.cc
|
| index b6057d6b659a4238c63dd85f29f2267a41dfb533..9a387bde7ad340d5c1e06820fea48ad9e99ead1a 100644
|
| --- a/shell/child_main.cc
|
| +++ b/shell/child_main.cc
|
| @@ -17,6 +17,7 @@
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/synchronization/waitable_event.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "base/threading/thread.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "mojo/common/message_pump_mojo.h"
|
| @@ -200,7 +201,7 @@ class ChildControllerImpl : public ChildController, public mojo::ErrorHandler {
|
| platform_channel.Pass(),
|
| base::Bind(&ChildControllerImpl::DidCreateChannel,
|
| base::Unretained(impl.get())),
|
| - base::MessageLoopProxy::current()));
|
| + base::ThreadTaskRunnerHandle::Get()));
|
|
|
| impl->Bind(host_message_pipe.Pass());
|
|
|
|
|