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); |
}; |