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

Unified Diff: chrome/browser/renderer_host/resource_message_filter.h

Issue 3915002: Out of process Pepper (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
Index: chrome/browser/renderer_host/resource_message_filter.h
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.h (revision 65099)
+++ chrome/browser/renderer_host/resource_message_filter.h (working copy)
@@ -17,6 +17,7 @@
#include "app/surface/transport_dib.h"
#include "base/callback.h"
#include "base/file_path.h"
+#include "base/linked_ptr.h"
#include "base/process.h"
#include "base/ref_counted.h"
#include "base/string16.h"
@@ -43,6 +44,7 @@
class HostZoomMap;
class IndexedDBDispatcherHost;
class NotificationsPrefsCache;
+class PpapiPluginProcessHost;
class Profile;
class RenderWidgetHelper;
class SearchProviderInstallStateDispatcherHost;
@@ -195,6 +197,8 @@
void OnOpenChannelToPlugin(const GURL& url,
const std::string& mime_type,
IPC::Message* reply_msg);
+ void OnOpenChannelToPepperPlugin(const FilePath& path,
+ IPC::Message* reply_msg);
void OnLaunchNaCl(const std::wstring& url,
int channel_descriptor,
IPC::Message* reply_msg);
@@ -473,6 +477,9 @@
base::TimeTicks last_plugin_refresh_time_; // Initialized to 0.
+ // A list of all Ppapi plugin processes for this renderer.
+ std::vector<linked_ptr<PpapiPluginProcessHost> > ppapi_plugin_hosts_;
+
// A callback to create a routing id for the associated renderer process.
scoped_ptr<CallbackWithReturnValue<int>::Type> next_route_id_callback_;
« no previous file with comments | « chrome/browser/renderer_host/browser_render_process_host.cc ('k') | chrome/browser/renderer_host/resource_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698