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

Unified Diff: content/browser/dom_storage/dom_storage_message_filter.h

Issue 11269010: Move fileapi and dom_storage directories into the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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/dom_storage/dom_storage_message_filter.h
===================================================================
--- content/browser/dom_storage/dom_storage_message_filter.h (revision 163834)
+++ content/browser/dom_storage/dom_storage_message_filter.h (working copy)
@@ -12,7 +12,6 @@
#include "webkit/dom_storage/dom_storage_context.h"
#include "webkit/dom_storage/dom_storage_types.h"
-class DOMStorageContextImpl;
class GURL;
class NullableString16;
@@ -22,10 +21,13 @@
class DomStorageHost;
}
+namespace content {
+class DOMStorageContextImpl;
+
// This class handles the logistics of DOM Storage within the browser process.
// It mostly ferries information between IPCs and the dom_storage classes.
class DOMStorageMessageFilter
- : public content::BrowserMessageFilter,
+ : public BrowserMessageFilter,
public dom_storage::DomStorageContext::EventObserver {
public:
explicit DOMStorageMessageFilter(int unused, DOMStorageContextImpl* context);
@@ -36,7 +38,7 @@
void InitializeInSequence();
void UninitializeInSequence();
- // content::BrowserMessageFilter implementation
+ // BrowserMessageFilter implementation
virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
virtual void OnFilterRemoved() OVERRIDE;
virtual base::TaskRunner* OverrideTaskRunnerForMessage(
@@ -87,4 +89,6 @@
DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageMessageFilter);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_MESSAGE_FILTER_H_

Powered by Google App Engine
This is Rietveld 408576698