diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 21:07:01 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 21:07:01 +0000 |
commit | d4f3d112edb3063f60e254ce2581d6d187f871f1 (patch) | |
tree | 90031a61105d99e9c9b522f310f4e3ff45fcc936 /chrome/common/child_process_host.cc | |
parent | c3c03f75ca4dc3f78b4b7d5c197a43ac4dbeb833 (diff) | |
download | chromium_src-d4f3d112edb3063f60e254ce2581d6d187f871f1.zip chromium_src-d4f3d112edb3063f60e254ce2581d6d187f871f1.tar.gz chromium_src-d4f3d112edb3063f60e254ce2581d6d187f871f1.tar.bz2 |
Fix non Windows builds.
Review URL: http://codereview.chromium.org/55041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12707 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process_host.cc')
-rw-r--r-- | chrome/common/child_process_host.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/child_process_host.cc b/chrome/common/child_process_host.cc index 6618554..6f4f6ef7 100644 --- a/chrome/common/child_process_host.cc +++ b/chrome/common/child_process_host.cc @@ -160,8 +160,10 @@ void ChildProcessHost::ListenerHook::OnMessageReceived( Singleton<ChildProcessList>::get()->remove(host_); if (host_->CanShutdown()) host_->Send(new PluginProcessMsg_Shutdown()); -#endif } else { +#else + { +#endif host_->OnMessageReceived(msg); } } |