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

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

Issue 9963107: Persist sessionStorage on disk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review. Created 8 years, 6 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/session_storage_namespace_impl.h
diff --git a/content/browser/dom_storage/session_storage_namespace_impl.h b/content/browser/dom_storage/session_storage_namespace_impl.h
index 11283d49f3c6d08fd1fbe31993bc26978f51c609..c9503fd0d0828d8327792791253eafa7ce5d3602 100644
--- a/content/browser/dom_storage/session_storage_namespace_impl.h
+++ b/content/browser/dom_storage/session_storage_namespace_impl.h
@@ -21,7 +21,10 @@ class SessionStorageNamespaceImpl
: NON_EXPORTED_BASE(public content::SessionStorageNamespace) {
public:
explicit SessionStorageNamespaceImpl(DOMStorageContextImpl* context);
- int64 id() const;
+ SessionStorageNamespaceImpl(DOMStorageContextImpl* context,
+ const std::string& persistent_id);
+ virtual int64 id() const OVERRIDE;
+ virtual std::string persistent_id() const OVERRIDE;
SessionStorageNamespaceImpl* Clone();
private:

Powered by Google App Engine
This is Rietveld 408576698