Index: ppapi/proxy/plugin_dispatcher.cc |
diff --git a/ppapi/proxy/plugin_dispatcher.cc b/ppapi/proxy/plugin_dispatcher.cc |
index 1b9c80a59eefe60efb76d62a92b147dc4e7afe22..812b2e9d09536fa6c70f9b4a72bf5c0e73f8cdbf 100644 |
--- a/ppapi/proxy/plugin_dispatcher.cc |
+++ b/ppapi/proxy/plugin_dispatcher.cc |
@@ -155,9 +155,11 @@ const void* PluginDispatcher::GetPluginInterface( |
bool PluginDispatcher::InitPluginWithChannel( |
PluginDelegate* delegate, |
+ base::ProcessId peer_pid, |
const IPC::ChannelHandle& channel_handle, |
bool is_client) { |
- if (!Dispatcher::InitWithChannel(delegate, channel_handle, is_client)) |
+ if (!Dispatcher::InitWithChannel(delegate, peer_pid, channel_handle, |
+ is_client)) |
return false; |
plugin_delegate_ = delegate; |
plugin_dispatcher_id_ = plugin_delegate_->Register(this); |