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

Unified Diff: chrome/browser/in_process_webkit/dom_storage_namespace.h

Issue 545054: Introduce all the plumbing for Session Storage. This mostly consists of crea... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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: chrome/browser/in_process_webkit/dom_storage_namespace.h
===================================================================
--- chrome/browser/in_process_webkit/dom_storage_namespace.h (revision 36257)
+++ chrome/browser/in_process_webkit/dom_storage_namespace.h (working copy)
@@ -8,7 +8,7 @@
#include "base/string16.h"
#include "base/hash_tables.h"
#include "base/scoped_ptr.h"
-#include "chrome/common/dom_storage_type.h"
+#include "chrome/common/dom_storage_common.h"
#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
class DOMStorageArea;
@@ -26,12 +26,12 @@
static DOMStorageNamespace* CreateLocalStorageNamespace(
DOMStorageContext* dom_storage_context, const FilePath& data_dir_path);
static DOMStorageNamespace* CreateSessionStorageNamespace(
- DOMStorageContext* dom_storage_context);
+ DOMStorageContext* dom_storage_context, int64 namespace_id);
~DOMStorageNamespace();
DOMStorageArea* GetStorageArea(const string16& origin);
- DOMStorageNamespace* Copy();
+ DOMStorageNamespace* Copy(int64 clone_namespace_id);
void PurgeMemory();
const DOMStorageContext* dom_storage_context() const {

Powered by Google App Engine
This is Rietveld 408576698