diff options
Diffstat (limited to 'chrome/plugin/plugin_channel_base.cc')
-rw-r--r-- | chrome/plugin/plugin_channel_base.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/plugin/plugin_channel_base.cc b/chrome/plugin/plugin_channel_base.cc index c44c52e..2785328 100644 --- a/chrome/plugin/plugin_channel_base.cc +++ b/chrome/plugin/plugin_channel_base.cc @@ -76,9 +76,9 @@ void PluginChannelBase::CleanupChannels() { bool PluginChannelBase::Init(MessageLoop* ipc_message_loop, bool create_pipe_now) { - channel_.reset(new IPC::SyncChannel(channel_name_, mode_, this, NULL, - ipc_message_loop, create_pipe_now, - PluginProcess::GetShutDownEvent())); + channel_.reset(new IPC::SyncChannel( + channel_name_, mode_, this, NULL, ipc_message_loop, create_pipe_now, + PluginProcess::current()->GetShutDownEvent())); channel_valid_ = true; return true; } |