diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-05 05:35:07 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-05 05:35:07 +0000 |
commit | fa6caa4ffb83896cb42198f35ca7837ae3b7c83c (patch) | |
tree | 7f42b778a87a10b5db39bbe26f3d380dda05f8eb /chrome/browser/plugin_process_host.cc | |
parent | a57ea3fc6c3cfe3b44dcd0771d0d56c76bd238df (diff) | |
download | chromium_src-fa6caa4ffb83896cb42198f35ca7837ae3b7c83c.zip chromium_src-fa6caa4ffb83896cb42198f35ca7837ae3b7c83c.tar.gz chromium_src-fa6caa4ffb83896cb42198f35ca7837ae3b7c83c.tar.bz2 |
Fix regression from r11509 which caused each plugin instance to have its own IPC channel (doh!).
BUG=119052
TEST=covered by ui test that Amit added
Review URL: http://codereview.chromium.org/119158
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17712 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_process_host.cc')
-rw-r--r-- | chrome/browser/plugin_process_host.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/plugin_process_host.cc b/chrome/browser/plugin_process_host.cc index 39ec81d..921f860 100644 --- a/chrome/browser/plugin_process_host.cc +++ b/chrome/browser/plugin_process_host.cc @@ -524,6 +524,7 @@ void PluginProcessHost::RequestPluginChannel( // a deadlock can occur if the plugin creation request from the renderer is // a result of a sync message by the plugin process. PluginProcessMsg_CreateChannel* msg = new PluginProcessMsg_CreateChannel( + renderer_message_filter->GetProcessId(), renderer_message_filter->off_the_record()); msg->set_unblock(true); if (Send(msg)) { |