Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: chrome/plugin/plugin_thread.cc

Issue 42054: Stop using renderer specific host ids in ResourceDispatcher. This allows it ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/plugin/plugin_thread.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/plugin/plugin_thread.cc
===================================================================
--- chrome/plugin/plugin_thread.cc (revision 11493)
+++ chrome/plugin/plugin_thread.cc (working copy)
@@ -90,14 +90,14 @@
TerminateProcess(GetCurrentProcess(), 0);
}
-void PluginThread::OnCreateChannel(int process_id, HANDLE renderer) {
+void PluginThread::OnCreateChannel() {
std::wstring channel_name;
scoped_refptr<PluginChannel> channel =
- PluginChannel::GetPluginChannel(process_id, renderer, owner_loop());
+ PluginChannel::GetPluginChannel(owner_loop());
if (channel.get())
channel_name = channel->channel_name();
- Send(new PluginProcessHostMsg_ChannelCreated(process_id, channel_name));
+ Send(new PluginProcessHostMsg_ChannelCreated(channel_name));
}
void PluginThread::OnShutdownResponse(bool ok_to_shutdown) {
« no previous file with comments | « chrome/plugin/plugin_thread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698