summaryrefslogtreecommitdiffstats
path: root/content/ppapi_plugin
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-06 21:01:19 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-06 21:01:19 +0000
commit6d3fb9e99fd48de3fdc1fb661eea30714221a414 (patch)
tree41aa60e83c83c8ce1e7bce6d57b20af7627647d6 /content/ppapi_plugin
parentfec7a61365df532b3bf016bc85b454692f327553 (diff)
downloadchromium_src-6d3fb9e99fd48de3fdc1fb661eea30714221a414.zip
chromium_src-6d3fb9e99fd48de3fdc1fb661eea30714221a414.tar.gz
chromium_src-6d3fb9e99fd48de3fdc1fb661eea30714221a414.tar.bz2
Add more logging to ChildThread.
BUG=140054 Review URL: https://chromiumcodereview.appspot.com/10829199 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/ppapi_plugin')
-rw-r--r--content/ppapi_plugin/ppapi_thread.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc
index 5fa3b87..f1fb7f7 100644
--- a/content/ppapi_plugin/ppapi_thread.cc
+++ b/content/ppapi_plugin/ppapi_thread.cc
@@ -124,7 +124,9 @@ bool PpapiThread::OnMessageReceived(const IPC::Message& msg) {
IPC_END_MESSAGE_MAP()
return true;
}
+
void PpapiThread::OnChannelConnected(int32 peer_pid) {
+ ChildThread::OnChannelConnected(peer_pid);
#if defined(OS_WIN)
if (is_broker_)
peer_handle_.Set(::OpenProcess(PROCESS_DUP_HANDLE, FALSE, peer_pid));