Index: content/browser/plugin_data_remover_impl.cc |
diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc |
index 36cc23fe47f99d89a3df1f503af02167cdf2c3f1..e192327b8e512a175a81be2cb1382cf6c00cec3e 100644 |
--- a/content/browser/plugin_data_remover_impl.cc |
+++ b/content/browser/plugin_data_remover_impl.cc |
@@ -19,6 +19,7 @@ |
#include "content/common/plugin_process_messages.h" |
#include "content/public/browser/browser_context.h" |
#include "content/public/browser/browser_thread.h" |
+#include "content/public/common/child_process_host.h" |
#include "content/public/common/content_constants.h" |
#include "content/public/common/pepper_plugin_info.h" |
#include "ppapi/proxy/ppapi_messages.h" |
@@ -226,7 +227,8 @@ class PluginDataRemoverImpl::Context |
return; |
DCHECK(!channel_.get()); |
- channel_ = IPC::Channel::CreateClient(handle, this); |
+ channel_ = IPC::Channel::CreateClient( |
+ handle, this, content::ChildProcessHost::GetAttachmentBroker()); |
if (!channel_->Connect()) { |
NOTREACHED() << "Couldn't connect to plugin"; |
SignalDone(); |