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

Unified Diff: content/browser/file_system/file_system_dispatcher_host.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/file_system/file_system_dispatcher_host.h
diff --git a/content/browser/file_system/file_system_dispatcher_host.h b/content/browser/file_system/file_system_dispatcher_host.h
index 54f3ff03c4f96459437faee3720343f332f7e0ee..17fe2dbd2380a213182b081e45e7f47266ff807b 100644
--- a/content/browser/file_system/file_system_dispatcher_host.h
+++ b/content/browser/file_system/file_system_dispatcher_host.h
@@ -9,7 +9,7 @@
#include "base/basictypes.h"
#include "base/id_map.h"
-#include "content/browser/browser_message_filter.h"
+#include "content/public/browser/browser_message_filter.h"
#include "webkit/fileapi/file_system_types.h"
class FilePath;
@@ -29,7 +29,7 @@ class URLRequestContext;
class URLRequestContextGetter;
} // namespace net
-class FileSystemDispatcherHost : public BrowserMessageFilter {
+class FileSystemDispatcherHost : public content::BrowserMessageFilter {
public:
// Used by the renderer process host on the UI thread.
FileSystemDispatcherHost(
@@ -41,7 +41,7 @@ class FileSystemDispatcherHost : public BrowserMessageFilter {
fileapi::FileSystemContext* file_system_context);
virtual ~FileSystemDispatcherHost();
- // BrowserMessageFilter implementation.
+ // content::BrowserMessageFilter implementation.
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
virtual void OverrideThreadForMessage(
const IPC::Message& message,

Powered by Google App Engine
This is Rietveld 408576698