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

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

Issue 8912009: Move BrowserMessageFilter to public, and into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 9 years 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 1afcdc8d0008149db1035b97d0ae07a25c880825..8da6c92a6e478d45aaa347d39b4e50408a780156 100644
--- a/content/browser/renderer_host/pepper_message_filter.h
+++ b/content/browser/renderer_host/pepper_message_filter.h
@@ -14,8 +14,8 @@
#include "base/memory/scoped_ptr.h"
#include "base/process.h"
#include "base/time.h"
-#include "content/browser/browser_message_filter.h"
#include "content/browser/font_list_async.h"
+#include "content/public/browser/browser_message_filter.h"
#include "net/base/ssl_config_service.h"
#include "ppapi/c/pp_stdint.h"
@@ -38,14 +38,14 @@ class HostResolver;
// PPAPI plugins and any requests that the PPAPI implementation code in the
// renderer needs to make. The second is on the plugin->browser channel to
// handle requests that out-of-process plugins send directly to the browser.
-class PepperMessageFilter : public BrowserMessageFilter {
+class PepperMessageFilter : public content::BrowserMessageFilter {
public:
explicit PepperMessageFilter(
const content::ResourceContext* resource_context);
explicit PepperMessageFilter(net::HostResolver* host_resolver);
virtual ~PepperMessageFilter();
- // BrowserMessageFilter methods.
+ // content::BrowserMessageFilter methods.
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698