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

Side by Side Diff: content/browser/dom_storage/dom_storage_context_wrapper.h

Issue 1837883003: Some fleshing out the mojo based localstorage implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/dom_storage/dom_storage_context_wrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_WRAPPER_H_ 5 #ifndef CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_WRAPPER_H_
6 #define CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_WRAPPER_H_ 6 #define CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_WRAPPER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 // the implementation for details. 59 // the implementation for details.
60 void SetForceKeepSessionState(); 60 void SetForceKeepSessionState();
61 61
62 // Called when the BrowserContext/Profile is going away. 62 // Called when the BrowserContext/Profile is going away.
63 void Shutdown(); 63 void Shutdown();
64 64
65 void Flush(); 65 void Flush();
66 66
67 // See mojom::StoragePartitionService interface. 67 // See mojom::StoragePartitionService interface.
68 void OpenLocalStorage(const url::Origin& origin, 68 void OpenLocalStorage(const url::Origin& origin,
69 mojom::LevelDBObserverPtr observer,
69 mojom::LevelDBWrapperRequest request); 70 mojom::LevelDBWrapperRequest request);
70 71
71 private: 72 private:
72 friend class DOMStorageMessageFilter; // for access to context() 73 friend class DOMStorageMessageFilter; // for access to context()
73 friend class SessionStorageNamespaceImpl; // ditto 74 friend class SessionStorageNamespaceImpl; // ditto
74 friend class base::RefCountedThreadSafe<DOMStorageContextWrapper>; 75 friend class base::RefCountedThreadSafe<DOMStorageContextWrapper>;
75 76
76 ~DOMStorageContextWrapper() override; 77 ~DOMStorageContextWrapper() override;
77 DOMStorageContextImpl* context() const { return context_.get(); } 78 DOMStorageContextImpl* context() const { return context_.get(); }
78 79
79 // An inner class to keep all mojo-ish details together and not bleed them 80 // An inner class to keep all mojo-ish details together and not bleed them
80 // through the public interface. 81 // through the public interface.
81 class MojoState; 82 class MojoState;
82 scoped_ptr<MojoState> mojo_state_; 83 scoped_ptr<MojoState> mojo_state_;
83 84
84 scoped_refptr<DOMStorageContextImpl> context_; 85 scoped_refptr<DOMStorageContextImpl> context_;
85 86
86 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageContextWrapper); 87 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageContextWrapper);
87 }; 88 };
88 89
89 } // namespace content 90 } // namespace content
90 91
91 #endif // CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_WRAPPER_H_ 92 #endif // CONTENT_BROWSER_DOM_STORAGE_DOM_STORAGE_CONTEXT_WRAPPER_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/dom_storage/dom_storage_context_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698