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

Side by Side Diff: third_party/WebKit/Source/modules/storage/StorageNamespaceController.h

Issue 1846913009: HeapSupplements are now just Supplements. (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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 StorageNamespaceController_h 5 #ifndef StorageNamespaceController_h
6 #define StorageNamespaceController_h 6 #define StorageNamespaceController_h
7 7
8 #include "core/page/Page.h" 8 #include "core/page/Page.h"
9 #include "modules/ModulesExport.h" 9 #include "modules/ModulesExport.h"
10 #include "platform/Supplementable.h" 10 #include "platform/Supplementable.h"
11 #include "wtf/PassOwnPtr.h" 11 #include "wtf/PassOwnPtr.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class InspectorDOMStorageAgent; 15 class InspectorDOMStorageAgent;
16 class StorageClient; 16 class StorageClient;
17 class StorageNamespace; 17 class StorageNamespace;
18 18
19 class MODULES_EXPORT StorageNamespaceController final : public GarbageCollectedF inalized<StorageNamespaceController>, public HeapSupplement<Page> { 19 class MODULES_EXPORT StorageNamespaceController final : public GarbageCollectedF inalized<StorageNamespaceController>, public Supplement<Page> {
20 USING_GARBAGE_COLLECTED_MIXIN(StorageNamespaceController); 20 USING_GARBAGE_COLLECTED_MIXIN(StorageNamespaceController);
21 public: 21 public:
22 StorageNamespace* sessionStorage(bool optionalCreate = true); 22 StorageNamespace* sessionStorage(bool optionalCreate = true);
23 StorageClient* getStorageClient() { return m_client; } 23 StorageClient* getStorageClient() { return m_client; }
24 ~StorageNamespaceController(); 24 ~StorageNamespaceController();
25 25
26 static void provideStorageNamespaceTo(Page&, StorageClient*); 26 static void provideStorageNamespaceTo(Page&, StorageClient*);
27 static StorageNamespaceController* from(Page* page) { return static_cast<Sto rageNamespaceController*>(HeapSupplement<Page>::from(page, supplementName())); } 27 static StorageNamespaceController* from(Page* page) { return static_cast<Sto rageNamespaceController*>(Supplement<Page>::from(page, supplementName())); }
28 28
29 DECLARE_TRACE(); 29 DECLARE_TRACE();
30 30
31 InspectorDOMStorageAgent* inspectorAgent() { return m_inspectorAgent; } 31 InspectorDOMStorageAgent* inspectorAgent() { return m_inspectorAgent; }
32 void setInspectorAgent(InspectorDOMStorageAgent* agent) { m_inspectorAgent = agent; } 32 void setInspectorAgent(InspectorDOMStorageAgent* agent) { m_inspectorAgent = agent; }
33 private: 33 private:
34 explicit StorageNamespaceController(StorageClient*); 34 explicit StorageNamespaceController(StorageClient*);
35 static const char* supplementName(); 35 static const char* supplementName();
36 OwnPtr<StorageNamespace> m_sessionStorage; 36 OwnPtr<StorageNamespace> m_sessionStorage;
37 StorageClient* m_client; 37 StorageClient* m_client;
38 Member<InspectorDOMStorageAgent> m_inspectorAgent; 38 Member<InspectorDOMStorageAgent> m_inspectorAgent;
39 }; 39 };
40 40
41 } // namespace blink 41 } // namespace blink
42 42
43 #endif // StorageNamespaceController_h 43 #endif // StorageNamespaceController_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698