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

Unified Diff: webkit/dom_storage/dom_storage_context.h

Issue 9429029: Integrate the new DomStorage backend into DRT and test_shell. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 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
« no previous file with comments | « no previous file | webkit/dom_storage/dom_storage_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/dom_storage/dom_storage_context.h
===================================================================
--- webkit/dom_storage/dom_storage_context.h (revision 124232)
+++ webkit/dom_storage/dom_storage_context.h (working copy)
@@ -100,14 +100,6 @@
const DomStorageArea* area,
const GURL& page_url);
- private:
- friend class DomStorageSession;
- friend class base::RefCountedThreadSafe<DomStorageContext>;
- typedef std::map<int64, scoped_refptr<DomStorageNamespace> >
- StorageNamespaceMap;
-
- ~DomStorageContext();
-
// May be called on any thread.
int64 AllocateSessionId() {
return session_id_sequence_.GetNext();
@@ -118,6 +110,13 @@
void DeleteSessionNamespace(int64 namespace_id);
void CloneSessionNamespace(int64 existing_id, int64 new_id);
+ private:
+ friend class base::RefCountedThreadSafe<DomStorageContext>;
+ typedef std::map<int64, scoped_refptr<DomStorageNamespace> >
+ StorageNamespaceMap;
+
+ ~DomStorageContext();
+
// Collection of namespaces keyed by id.
StorageNamespaceMap namespaces_;
« no previous file with comments | « no previous file | webkit/dom_storage/dom_storage_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698