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

Unified Diff: chrome/browser/plugin_process_host.h

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/browser/download/save_package.cc ('k') | chrome/browser/plugin_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_process_host.h
===================================================================
--- chrome/browser/plugin_process_host.h (revision 11493)
+++ chrome/browser/plugin_process_host.h (working copy)
@@ -8,6 +8,7 @@
#include "build/build_config.h"
#include <set>
+#include <queue>
#include <vector>
#include "base/basictypes.h"
@@ -94,7 +95,7 @@
const std::string& mime_type,
IPC::Message* reply_msg);
// Message handlers.
- void OnChannelCreated(int process_id, const std::wstring& channel_name);
+ void OnChannelCreated(const std::wstring& channel_name);
void OnDownloadUrl(const std::string& url, int source_pid,
gfx::NativeWindow caller_window);
void OnGetPluginFinderUrl(std::string* plugin_finder_url);
@@ -134,7 +135,7 @@
// These are the channel requests that we have already sent to
// the plugin process, but haven't heard back about yet.
- std::vector<ChannelRequest> sent_requests_;
+ std::queue<ChannelRequest> sent_requests_;
// Information about the plugin.
WebPluginInfo info_;
« no previous file with comments | « chrome/browser/download/save_package.cc ('k') | chrome/browser/plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698