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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "core/frame/Navigator.h" | 34 #include "core/frame/Navigator.h" |
35 #include "modules/quota/DeprecatedStorageQuota.h" | 35 #include "modules/quota/DeprecatedStorageQuota.h" |
36 #include "platform/Supplementable.h" | 36 #include "platform/Supplementable.h" |
37 #include "platform/heap/Handle.h" | 37 #include "platform/heap/Handle.h" |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 class Navigator; | 41 class Navigator; |
42 class StorageManager; | 42 class StorageManager; |
43 class StorageQuota; | |
44 | 43 |
45 class NavigatorStorageQuota final | 44 class NavigatorStorageQuota final |
46 : public GarbageCollected<NavigatorStorageQuota>, | 45 : public GarbageCollected<NavigatorStorageQuota>, |
47 public Supplement<Navigator> { | 46 public Supplement<Navigator> { |
48 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); | 47 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); |
49 | 48 |
50 public: | 49 public: |
51 static NavigatorStorageQuota& from(Navigator&); | 50 static NavigatorStorageQuota& from(Navigator&); |
52 static StorageQuota* storageQuota(Navigator&); | |
53 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); | 51 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); |
54 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); | 52 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); |
55 static StorageManager* storage(Navigator&); | 53 static StorageManager* storage(Navigator&); |
56 | 54 |
57 StorageQuota* storageQuota() const; | |
58 DeprecatedStorageQuota* webkitTemporaryStorage() const; | 55 DeprecatedStorageQuota* webkitTemporaryStorage() const; |
59 DeprecatedStorageQuota* webkitPersistentStorage() const; | 56 DeprecatedStorageQuota* webkitPersistentStorage() const; |
60 StorageManager* storage() const; | 57 StorageManager* storage() const; |
61 | 58 |
62 DECLARE_TRACE(); | 59 DECLARE_TRACE(); |
63 | 60 |
64 private: | 61 private: |
65 explicit NavigatorStorageQuota(Navigator&); | 62 explicit NavigatorStorageQuota(Navigator&); |
66 static const char* supplementName(); | 63 static const char* supplementName(); |
67 | 64 |
68 mutable Member<StorageQuota> m_storageQuota; | |
69 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; | 65 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; |
70 mutable Member<DeprecatedStorageQuota> m_persistentStorage; | 66 mutable Member<DeprecatedStorageQuota> m_persistentStorage; |
71 mutable Member<StorageManager> m_storageManager; | 67 mutable Member<StorageManager> m_storageManager; |
72 }; | 68 }; |
73 | 69 |
74 } // namespace blink | 70 } // namespace blink |
75 | 71 |
76 #endif // NavigatorStorageQuota_h | 72 #endif // NavigatorStorageQuota_h |
OLD | NEW |