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

Unified Diff: content/browser/profiler_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/profiler_message_filter.h
diff --git a/content/browser/profiler_message_filter.h b/content/browser/profiler_message_filter.h
index 3790527c7e99f71695c0fee1a3973c7a5fa9730a..79e6e942fef4097ff9e112fce80bc8b62c90241b 100644
--- a/content/browser/profiler_message_filter.h
+++ b/content/browser/profiler_message_filter.h
@@ -7,22 +7,22 @@
#include <string>
-#include "content/browser/browser_message_filter.h"
+#include "content/public/browser/browser_message_filter.h"
namespace base {
class DictionaryValue;
}
// This class sends and receives profiler messages in the browser process.
-class ProfilerMessageFilter : public BrowserMessageFilter {
+class ProfilerMessageFilter : public content::BrowserMessageFilter {
public:
ProfilerMessageFilter();
virtual ~ProfilerMessageFilter();
- // BrowserMessageFilter implementation.
+ // content::BrowserMessageFilter implementation.
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
- // BrowserMessageFilter implementation.
+ // content::BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698