OLD | NEW |
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 NoBaseWillBeGarba
geCollectedFinalized<StorageNamespaceController>, public WillBeHeapSupplement<Pa
ge> { | 19 class MODULES_EXPORT StorageNamespaceController final : public NoBaseWillBeGarba
geCollectedFinalized<StorageNamespaceController>, public WillBeHeapSupplement<Pa
ge> { |
20 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(StorageNamespaceController); | 20 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(StorageNamespaceController); |
21 USING_FAST_MALLOC_WILL_BE_REMOVED(StorageNamespaceController); | 21 USING_FAST_MALLOC_WILL_BE_REMOVED(StorageNamespaceController); |
22 public: | 22 public: |
23 StorageNamespace* sessionStorage(bool optionalCreate = true); | 23 StorageNamespace* sessionStorage(bool optionalCreate = true); |
24 StorageClient* storageClient() { return m_client; } | 24 StorageClient* getStorageClient() { return m_client; } |
25 ~StorageNamespaceController(); | 25 ~StorageNamespaceController(); |
26 | 26 |
27 static void provideStorageNamespaceTo(Page&, StorageClient*); | 27 static void provideStorageNamespaceTo(Page&, StorageClient*); |
28 static StorageNamespaceController* from(Page* page) { return static_cast<Sto
rageNamespaceController*>(WillBeHeapSupplement<Page>::from(page, supplementName(
))); } | 28 static StorageNamespaceController* from(Page* page) { return static_cast<Sto
rageNamespaceController*>(WillBeHeapSupplement<Page>::from(page, supplementName(
))); } |
29 | 29 |
30 DECLARE_TRACE(); | 30 DECLARE_TRACE(); |
31 | 31 |
32 InspectorDOMStorageAgent* inspectorAgent() { return m_inspectorAgent; } | 32 InspectorDOMStorageAgent* inspectorAgent() { return m_inspectorAgent; } |
33 void setInspectorAgent(InspectorDOMStorageAgent* agent) { m_inspectorAgent =
agent; } | 33 void setInspectorAgent(InspectorDOMStorageAgent* agent) { m_inspectorAgent =
agent; } |
34 private: | 34 private: |
35 explicit StorageNamespaceController(StorageClient*); | 35 explicit StorageNamespaceController(StorageClient*); |
36 static const char* supplementName(); | 36 static const char* supplementName(); |
37 OwnPtr<StorageNamespace> m_sessionStorage; | 37 OwnPtr<StorageNamespace> m_sessionStorage; |
38 StorageClient* m_client; | 38 StorageClient* m_client; |
39 RawPtrWillBeMember<InspectorDOMStorageAgent> m_inspectorAgent; | 39 RawPtrWillBeMember<InspectorDOMStorageAgent> m_inspectorAgent; |
40 }; | 40 }; |
41 | 41 |
42 } // namespace blink | 42 } // namespace blink |
43 | 43 |
44 #endif // StorageNamespaceController_h | 44 #endif // StorageNamespaceController_h |
OLD | NEW |