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

Unified Diff: content/renderer/dom_storage/dom_storage_proxy.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/renderer/dom_storage/dom_storage_proxy.h
diff --git a/content/renderer/dom_storage/dom_storage_proxy.h b/content/renderer/dom_storage/dom_storage_proxy.h
index 57fcfaf7499080e211a86ff4ce694174a9590d61..80cd87cdcc42fe450d8b7807e388ac01656fa79e 100644
--- a/content/renderer/dom_storage/dom_storage_proxy.h
+++ b/content/renderer/dom_storage/dom_storage_proxy.h
@@ -9,18 +9,18 @@
#include "base/memory/ref_counted.h"
#include "base/strings/nullable_string16.h"
#include "base/strings/string16.h"
+#include "content/common/dom_storage/dom_storage_types.h"
#include "url/gurl.h"
-#include "webkit/common/dom_storage/dom_storage_types.h"
namespace content {
// Abstract interface for cached area, renderer to browser communications.
-class DomStorageProxy : public base::RefCounted<DomStorageProxy> {
+class DOMStorageProxy : public base::RefCounted<DOMStorageProxy> {
public:
typedef base::Callback<void(bool)> CompletionCallback;
virtual void LoadArea(int connection_id,
- dom_storage::ValuesMap* values,
+ DOMStorageValuesMap* values,
const CompletionCallback& callback) = 0;
virtual void SetItem(int connection_id,
@@ -39,8 +39,8 @@ class DomStorageProxy : public base::RefCounted<DomStorageProxy> {
const CompletionCallback& callback) = 0;
protected:
- friend class base::RefCounted<DomStorageProxy>;
- virtual ~DomStorageProxy() {}
+ friend class base::RefCounted<DOMStorageProxy>;
+ virtual ~DOMStorageProxy() {}
};
} // namespace content
« no previous file with comments | « content/renderer/dom_storage/dom_storage_dispatcher.cc ('k') | content/renderer/dom_storage/webstoragearea_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698