diff options
Diffstat (limited to 'chrome/plugin/plugin_channel_base.cc')
-rw-r--r-- | chrome/plugin/plugin_channel_base.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/plugin/plugin_channel_base.cc b/chrome/plugin/plugin_channel_base.cc index 61b56d5..0e26e86 100644 --- a/chrome/plugin/plugin_channel_base.cc +++ b/chrome/plugin/plugin_channel_base.cc @@ -7,8 +7,8 @@ #include "chrome/plugin/plugin_channel_base.h" #include "base/hash_tables.h" +#include "chrome/common/child_process.h" #include "chrome/common/ipc_sync_message.h" -#include "chrome/plugin/plugin_process.h" typedef base::hash_map<std::wstring, scoped_refptr<PluginChannelBase> > PluginChannelMap; @@ -78,7 +78,7 @@ 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::current()->GetShutDownEvent())); + ChildProcess::current()->GetShutDownEvent())); channel_valid_ = true; return true; } |