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

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

Issue 22297005: Move webkit/{browser,common}/dom_storage into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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
diff --git a/content/browser/dom_storage/dom_storage_message_filter.h b/content/browser/dom_storage/dom_storage_message_filter.h
index cc6ec3523d96ebf2a49786afbc4254f7ed4ed9a6..dbe019b110ea4ed49b2a8f4c3750ace81e3e11d6 100644
--- a/content/browser/dom_storage/dom_storage_message_filter.h
+++ b/content/browser/dom_storage/dom_storage_message_filter.h
@@ -7,9 +7,9 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
+#include "content/browser/dom_storage/dom_storage_context_impl.h"
+#include "content/common/dom_storage/dom_storage_types.h"
#include "content/public/browser/browser_message_filter.h"
-#include "webkit/browser/dom_storage/dom_storage_context.h"
-#include "webkit/common/dom_storage/dom_storage_types.h"
class GURL;
@@ -17,22 +17,22 @@ namespace base {
class NullableString16;
}
-namespace dom_storage {
-class DomStorageArea;
-class DomStorageContext;
-class DomStorageHost;
+namespace content {
jam 2013/08/06 16:13:49 nit: combine with namespace below
kinuko 2013/08/07 14:29:52 Done.
+class DOMStorageArea;
+class DOMStorageContextImpl;
+class DOMStorageHost;
}
namespace content {
-class DOMStorageContextImpl;
+class DOMStorageContextProxy;
// 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 BrowserMessageFilter,
- public dom_storage::DomStorageContext::EventObserver {
+ public DOMStorageContextImpl::EventObserver {
public:
- explicit DOMStorageMessageFilter(int unused, DOMStorageContextImpl* context);
+ explicit DOMStorageMessageFilter(int unused, DOMStorageContextProxy* context);
private:
virtual ~DOMStorageMessageFilter();
@@ -52,7 +52,7 @@ class DOMStorageMessageFilter
void OnOpenStorageArea(int connection_id, int64 namespace_id,
const GURL& origin);
void OnCloseStorageArea(int connection_id);
- void OnLoadStorageArea(int connection_id, dom_storage::ValuesMap* map);
+ void OnLoadStorageArea(int connection_id, DOMStorageValuesMap* map);
void OnSetItem(int connection_id, const string16& key,
const string16& value, const GURL& page_url);
void OnRemoveItem(int connection_id, const string16& key,
@@ -60,32 +60,32 @@ class DOMStorageMessageFilter
void OnClear(int connection_id, const GURL& page_url);
void OnFlushMessages();
- // DomStorageContext::EventObserver implementation which
+ // DOMStorageContextImpl::EventObserver implementation which
// sends events back to our renderer process.
- virtual void OnDomStorageItemSet(
- const dom_storage::DomStorageArea* area,
+ virtual void OnDOMStorageItemSet(
+ const DOMStorageArea* area,
const string16& key,
const string16& new_value,
const base::NullableString16& old_value,
const GURL& page_url) OVERRIDE;
- virtual void OnDomStorageItemRemoved(
- const dom_storage::DomStorageArea* area,
+ virtual void OnDOMStorageItemRemoved(
+ const DOMStorageArea* area,
const string16& key,
const string16& old_value,
const GURL& page_url) OVERRIDE;
- virtual void OnDomStorageAreaCleared(
- const dom_storage::DomStorageArea* area,
+ virtual void OnDOMStorageAreaCleared(
+ const DOMStorageArea* area,
const GURL& page_url) OVERRIDE;
- void SendDomStorageEvent(
- const dom_storage::DomStorageArea* area,
+ void SendDOMStorageEvent(
+ const DOMStorageArea* area,
const GURL& page_url,
const base::NullableString16& key,
const base::NullableString16& new_value,
const base::NullableString16& old_value);
- scoped_refptr<dom_storage::DomStorageContext> context_;
- scoped_ptr<dom_storage::DomStorageHost> host_;
+ scoped_refptr<DOMStorageContextImpl> context_;
+ scoped_ptr<DOMStorageHost> host_;
int connection_dispatching_message_for_;
DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageMessageFilter);

Powered by Google App Engine
This is Rietveld 408576698