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

Unified Diff: chrome/renderer/pepper/pepper_flash_renderer_message_filter.h

Issue 10815073: Refactoring of new IPC-only pepper implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « no previous file | chrome/renderer/pepper/pepper_flash_renderer_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/pepper/pepper_flash_renderer_message_filter.h
diff --git a/chrome/renderer/pepper/pepper_flash_renderer_message_filter.h b/chrome/renderer/pepper/pepper_flash_renderer_message_filter.h
index 3a39ae65dbb2118ad767a6c6146caa2906d3636a..6bda03d148bd04b89a52c13d772ff769658017b0 100644
--- a/chrome/renderer/pepper/pepper_flash_renderer_message_filter.h
+++ b/chrome/renderer/pepper/pepper_flash_renderer_message_filter.h
@@ -10,6 +10,10 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/host/instance_message_filter.h"
+namespace content {
+class RendererPpapiHost;
+}
+
namespace chrome {
// Implements the backend for Flash-specific messages from a plugin process.
@@ -18,7 +22,7 @@ class PepperFlashRendererMessageFilter
public:
// This class is designed to be heap-allocated. It will attach itself to the
// given host and delete itself when the host is destroyed.
- explicit PepperFlashRendererMessageFilter(ppapi::host::PpapiHost* host);
+ explicit PepperFlashRendererMessageFilter(content::RendererPpapiHost* host);
virtual ~PepperFlashRendererMessageFilter();
// InstanceMessageFilter:
@@ -28,6 +32,8 @@ class PepperFlashRendererMessageFilter
// Message handlers.
void OnHostMsgInvokePrinting(PP_Instance instance);
+ content::RendererPpapiHost* host_;
+
DISALLOW_COPY_AND_ASSIGN(PepperFlashRendererMessageFilter);
};
« no previous file with comments | « no previous file | chrome/renderer/pepper/pepper_flash_renderer_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698