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

Unified Diff: content/browser/renderer_host/pepper_message_filter.h

Issue 10342013: Generate and connect a Pepper identifier for Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup as per brettw; move to serializedreturnvar in the host msg bounce step Created 8 years, 8 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
Index: content/browser/renderer_host/pepper_message_filter.h
diff --git a/content/browser/renderer_host/pepper_message_filter.h b/content/browser/renderer_host/pepper_message_filter.h
index bace9d3199cd372b040ffd4b86c94406a65c9608..1ef1e50b60719797d1f45855169c220214250a07 100644
--- a/content/browser/renderer_host/pepper_message_filter.h
+++ b/content/browser/renderer_host/pepper_message_filter.h
@@ -11,6 +11,7 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/file_path.h"
#include "base/memory/linked_ptr.h"
#include "base/memory/scoped_ptr.h"
#include "base/process.h"
@@ -34,6 +35,7 @@ class ListValue;
}
namespace content {
+class BrowserContext;
class ResourceContext;
}
@@ -63,7 +65,7 @@ class PepperMessageFilter
// provided for sanity checking).
PepperMessageFilter(ProcessType type,
int process_id,
- content::ResourceContext* resource_context);
+ content::BrowserContext* browser_context);
// Constructor when used in the context of a PPAPI process (the argument is
// provided for sanity checking).
@@ -252,6 +254,8 @@ class PepperMessageFilter
NetworkMonitorIdSet network_monitor_ids_;
+ FilePath browser_path_;
+
DISALLOW_COPY_AND_ASSIGN(PepperMessageFilter);
};

Powered by Google App Engine
This is Rietveld 408576698