| 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 bd83892fbfe61f01926a02d90d7b366c08d3b486..88d603cd381d189b78b8fb9a9a166625cbafc975 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -726,14 +726,12 @@ scoped_ptr<IPC::ChannelProxy> RenderProcessHostImpl::CreateChannelProxy(
|
|
|
| return IPC::ChannelProxy::Create(
|
| IPC::ChannelMojo::CreateServerFactory(
|
| - mojo_task_runner, channel_id,
|
| - content::ChildProcessHost::GetAttachmentBroker()),
|
| + mojo_task_runner, channel_id),
|
| this, runner.get());
|
| }
|
|
|
| return IPC::ChannelProxy::Create(
|
| - channel_id, IPC::Channel::MODE_SERVER, this, runner.get(),
|
| - content::ChildProcessHost::GetAttachmentBroker());
|
| + channel_id, IPC::Channel::MODE_SERVER, this, runner.get());
|
| }
|
|
|
| void RenderProcessHostImpl::CreateMessageFilters() {
|
|
|