Index: chrome/browser/pepper_flash_settings_manager.cc |
diff --git a/chrome/browser/pepper_flash_settings_manager.cc b/chrome/browser/pepper_flash_settings_manager.cc |
index eb64b49fe8cbbf2fe4218494d804b2bf70187422..ff942c3360af4b69c06ee048a2e58bccb3add96a 100644 |
--- a/chrome/browser/pepper_flash_settings_manager.cc |
+++ b/chrome/browser/pepper_flash_settings_manager.cc |
@@ -23,6 +23,7 @@ |
#include "content/public/browser/browser_thread.h" |
#include "content/public/browser/pepper_flash_settings_helper.h" |
#include "content/public/browser/plugin_service.h" |
+#include "content/public/common/child_process_host.h" |
#include "content/public/common/content_constants.h" |
#include "content/public/common/webplugininfo.h" |
#include "ipc/ipc_channel.h" |
@@ -353,7 +354,8 @@ void PepperFlashSettingsManager::Core::ConnectToChannel( |
return; |
} |
- channel_ = IPC::Channel::CreateClient(handle, this); |
+ channel_ = IPC::Channel::CreateClient( |
+ handle, this, content::ChildProcessHost::GetAttachmentBroker()); |
if (!channel_->Connect()) { |
DLOG(ERROR) << "Couldn't connect to plugin"; |
NotifyErrorFromIOThread(); |