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 7ac8881cc8f94edfdf8cdec599b7a285337457a1..2d9a2b08407db1fd81cf778883d076591c9d2a08 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -737,14 +737,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() { |