OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef NavigatorStorageQuota_h | 31 #ifndef NavigatorStorageQuota_h |
32 #define NavigatorStorageQuota_h | 32 #define NavigatorStorageQuota_h |
33 | 33 |
34 #include "core/dom/ContextLifecycleObserver.h" | |
35 #include "core/frame/Navigator.h" | 34 #include "core/frame/Navigator.h" |
36 #include "modules/quota/DeprecatedStorageQuota.h" | 35 #include "modules/quota/DeprecatedStorageQuota.h" |
37 #include "platform/Supplementable.h" | 36 #include "platform/Supplementable.h" |
38 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
39 | 38 |
40 namespace blink { | 39 namespace blink { |
41 | 40 |
42 class LocalFrame; | |
43 class Navigator; | 41 class Navigator; |
44 class StorageManager; | 42 class StorageManager; |
45 class StorageQuota; | 43 class StorageQuota; |
46 | 44 |
47 class NavigatorStorageQuota final | 45 class NavigatorStorageQuota final |
48 : public GarbageCollected<NavigatorStorageQuota>, | 46 : public GarbageCollected<NavigatorStorageQuota>, |
49 public Supplement<Navigator>, | 47 public Supplement<Navigator> { |
50 public ContextClient { | |
51 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); | 48 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); |
52 | 49 |
53 public: | 50 public: |
54 static NavigatorStorageQuota& from(Navigator&); | 51 static NavigatorStorageQuota& from(Navigator&); |
55 static StorageQuota* storageQuota(Navigator&); | 52 static StorageQuota* storageQuota(Navigator&); |
56 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); | 53 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); |
57 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); | 54 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); |
58 static StorageManager* storage(Navigator&); | 55 static StorageManager* storage(Navigator&); |
59 | 56 |
60 StorageQuota* storageQuota() const; | 57 StorageQuota* storageQuota() const; |
61 DeprecatedStorageQuota* webkitTemporaryStorage() const; | 58 DeprecatedStorageQuota* webkitTemporaryStorage() const; |
62 DeprecatedStorageQuota* webkitPersistentStorage() const; | 59 DeprecatedStorageQuota* webkitPersistentStorage() const; |
63 StorageManager* storage() const; | 60 StorageManager* storage() const; |
64 | 61 |
65 DECLARE_TRACE(); | 62 DECLARE_TRACE(); |
66 | 63 |
67 private: | 64 private: |
68 explicit NavigatorStorageQuota(LocalFrame*); | 65 explicit NavigatorStorageQuota(Navigator&); |
69 static const char* supplementName(); | 66 static const char* supplementName(); |
70 | 67 |
71 mutable Member<StorageQuota> m_storageQuota; | 68 mutable Member<StorageQuota> m_storageQuota; |
72 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; | 69 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; |
73 mutable Member<DeprecatedStorageQuota> m_persistentStorage; | 70 mutable Member<DeprecatedStorageQuota> m_persistentStorage; |
74 mutable Member<StorageManager> m_storageManager; | 71 mutable Member<StorageManager> m_storageManager; |
75 }; | 72 }; |
76 | 73 |
77 } // namespace blink | 74 } // namespace blink |
78 | 75 |
79 #endif // NavigatorStorageQuota_h | 76 #endif // NavigatorStorageQuota_h |
OLD | NEW |