| 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 27ec3065a73e855b0d9f520b02afbdf30ac2627c..c3f281f897e5f29d3cecd7b5919a7224f5514a48 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -743,13 +743,12 @@ scoped_ptr<IPC::ChannelProxy> RenderProcessHostImpl::CreateChannelProxy(
|
| VLOG(1) << "Mojo Channel is enabled on host";
|
|
|
| return IPC::ChannelProxy::Create(
|
| - IPC::ChannelMojo::CreateServerFactory(
|
| - mojo_task_runner, channel_id),
|
| + IPC::ChannelMojo::CreateServerFactory(mojo_task_runner, channel_id),
|
| this, runner.get());
|
| }
|
|
|
| - return IPC::ChannelProxy::Create(
|
| - channel_id, IPC::Channel::MODE_SERVER, this, runner.get());
|
| + return IPC::ChannelProxy::Create(channel_id, IPC::Channel::MODE_SERVER, this,
|
| + runner.get());
|
| }
|
|
|
| void RenderProcessHostImpl::CreateMessageFilters() {
|
|
|