| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index d18dcd389b433f916c920aa737311056c12dc58b..4ea27a11978a18f7a4b1ef4dead9e2943ed9f941 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -703,11 +703,10 @@ scoped_ptr<IPC::ChannelProxy> RenderProcessHostImpl::CreateChannelProxy(
|
| channel_mojo_host_.reset(new IPC::ChannelMojoHost(mojo_task_runner));
|
| }
|
|
|
| - return IPC::ChannelProxy::Create(
|
| - IPC::ChannelMojo::CreateServerFactory(
|
| - channel_mojo_host_->channel_delegate(), channel_id),
|
| - this,
|
| - runner.get());
|
| + return IPC::ChannelProxy::Create(IPC::ChannelMojo::CreateServerFactory(
|
| + channel_mojo_host_->channel_delegate(),
|
| + mojo_task_runner, channel_id),
|
| + this, runner.get());
|
| }
|
|
|
| return IPC::ChannelProxy::Create(
|
|
|