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

Unified Diff: content/browser/renderer_host/pepper/content_browser_pepper_host_factory.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
Index: content/browser/renderer_host/pepper/content_browser_pepper_host_factory.h
diff --git a/content/browser/renderer_host/pepper/content_browser_pepper_host_factory.h b/content/browser/renderer_host/pepper/content_browser_pepper_host_factory.h
index e800bb3a5ec8e163f66b24a2ccf0f329750248a6..2bc771fea723680455add70bf133796563e2b2ac 100644
--- a/content/browser/renderer_host/pepper/content_browser_pepper_host_factory.h
+++ b/content/browser/renderer_host/pepper/content_browser_pepper_host_factory.h
@@ -8,14 +8,14 @@
#include "base/compiler_specific.h"
#include "ppapi/host/host_factory.h"
-class PepperMessageFilter;
-
namespace content {
+class BrowserPpapiHostImpl;
+
class ContentBrowserPepperHostFactory : public ppapi::host::HostFactory {
public:
// Non-owning pointer to the filter must outlive this class.
- explicit ContentBrowserPepperHostFactory(PepperMessageFilter* filter);
+ explicit ContentBrowserPepperHostFactory(BrowserPpapiHostImpl* host);
virtual ~ContentBrowserPepperHostFactory();
virtual scoped_ptr<ppapi::host::ResourceHost> CreateResourceHost(
@@ -26,7 +26,7 @@ class ContentBrowserPepperHostFactory : public ppapi::host::HostFactory {
private:
// Non-owning pointer.
- PepperMessageFilter* filter_;
+ BrowserPpapiHostImpl* host_;
DISALLOW_COPY_AND_ASSIGN(ContentBrowserPepperHostFactory);
};

Powered by Google App Engine
This is Rietveld 408576698