Index: content/child/child_thread_impl.cc |
diff --git a/content/child/child_thread_impl.cc b/content/child/child_thread_impl.cc |
index bfd7c6b82b014a5139dbbec13c5289650b44413f..3d26cbdf16d307efc26885afcc71b766b8eb3e46 100644 |
--- a/content/child/child_thread_impl.cc |
+++ b/content/child/child_thread_impl.cc |
@@ -377,8 +377,10 @@ void ChildThreadImpl::ConnectChannel(bool use_mojo_channel, |
handle = mojo::edk::CreateChildMessagePipe(ipc_token); |
} |
DCHECK(handle.is_valid()); |
- channel_->Init(IPC::ChannelMojo::CreateClientFactory(std::move(handle)), |
- create_pipe_now); |
+ channel_->Init( |
+ IPC::ChannelMojo::CreateClientFactory( |
+ std::move(handle), ChildProcess::current()->io_task_runner()), |
+ create_pipe_now); |
return; |
} |