| 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 e393673e44ba62ce6ddd97c410b8ba3aa24cb858..12a655407c19e8f2a2de2a017eeccfbfc074c00c 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -129,6 +129,7 @@
|
| #include "content/common/site_isolation_policy.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/browser/browser_context.h"
|
| +#include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/navigator_connect_context.h"
|
| #include "content/public/browser/notification_service.h"
|
| @@ -738,7 +739,8 @@ bool RenderProcessHostImpl::Init() {
|
| channel_ = CreateChannelProxy(channel_id);
|
| #if USE_ATTACHMENT_BROKER
|
| IPC::AttachmentBroker::GetGlobal()->RegisterCommunicationChannel(
|
| - channel_.get());
|
| + channel_.get(), content::BrowserThread::GetMessageLoopProxyForThread(
|
| + content::BrowserThread::IO));
|
| #endif
|
|
|
| // Setup the Mojo channel.
|
|
|