diff options
author | ddorwin@chromium.org <ddorwin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-18 22:51:08 +0000 |
---|---|---|
committer | ddorwin@chromium.org <ddorwin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-18 22:51:08 +0000 |
commit | 4b417e55e37a4d9d347a0dfbfc5350f55569819f (patch) | |
tree | 1e93f2f2510c8e1d7a596dbf9aaec4bdd8ed1f87 /ppapi/proxy/host_dispatcher.cc | |
parent | 5d15b27b0e135a5353bd8150d42be1d1ed6d1871 (diff) | |
download | chromium_src-4b417e55e37a4d9d347a0dfbfc5350f55569819f.zip chromium_src-4b417e55e37a4d9d347a0dfbfc5350f55569819f.tar.gz chromium_src-4b417e55e37a4d9d347a0dfbfc5350f55569819f.tar.bz2 |
Fix two bugs in proxying of Broker Connect callback and shutdown Broker when renderer exits.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6882020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/host_dispatcher.cc')
-rw-r--r-- | ppapi/proxy/host_dispatcher.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/proxy/host_dispatcher.cc b/ppapi/proxy/host_dispatcher.cc index cba66de..dc2c832 100644 --- a/ppapi/proxy/host_dispatcher.cc +++ b/ppapi/proxy/host_dispatcher.cc @@ -176,7 +176,7 @@ bool HostDispatcher::OnMessageReceived(const IPC::Message& msg) { void HostDispatcher::OnChannelError() { Dispatcher::OnChannelError(); // Stop using the channel. - // Tell the host about the crash so it can clean up. + // Tell the host about the crash so it can clean up and display notification. ppb_proxy_->PluginCrashed(pp_module()); } |