| 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/DOMWindowProperty.h" | 34 #include "core/frame/DOMWindowProperty.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 LocalFrame; | 41 class LocalFrame; |
| 42 class Navigator; | 42 class Navigator; |
| 43 class StorageManager; |
| 43 class StorageQuota; | 44 class StorageQuota; |
| 44 | 45 |
| 45 class NavigatorStorageQuota final : public GarbageCollectedFinalized<NavigatorSt
orageQuota>, public HeapSupplement<Navigator>, public DOMWindowProperty { | 46 class NavigatorStorageQuota final : public GarbageCollectedFinalized<NavigatorSt
orageQuota>, public HeapSupplement<Navigator>, public DOMWindowProperty { |
| 46 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); | 47 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); |
| 47 public: | 48 public: |
| 48 static NavigatorStorageQuota& from(Navigator&); | 49 static NavigatorStorageQuota& from(Navigator&); |
| 49 virtual ~NavigatorStorageQuota(); | 50 virtual ~NavigatorStorageQuota(); |
| 50 | 51 |
| 51 static StorageQuota* storageQuota(Navigator&); | 52 static StorageQuota* storageQuota(Navigator&); |
| 52 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); | 53 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); |
| 53 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); | 54 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); |
| 55 static StorageManager* storage(Navigator&); |
| 54 | 56 |
| 55 StorageQuota* storageQuota() const; | 57 StorageQuota* storageQuota() const; |
| 56 DeprecatedStorageQuota* webkitTemporaryStorage() const; | 58 DeprecatedStorageQuota* webkitTemporaryStorage() const; |
| 57 DeprecatedStorageQuota* webkitPersistentStorage() const; | 59 DeprecatedStorageQuota* webkitPersistentStorage() const; |
| 60 StorageManager* storage() const; |
| 58 | 61 |
| 59 DECLARE_TRACE(); | 62 DECLARE_TRACE(); |
| 60 | 63 |
| 61 private: | 64 private: |
| 62 explicit NavigatorStorageQuota(LocalFrame*); | 65 explicit NavigatorStorageQuota(LocalFrame*); |
| 63 static const char* supplementName(); | 66 static const char* supplementName(); |
| 64 | 67 |
| 65 mutable Member<StorageQuota> m_storageQuota; | 68 mutable Member<StorageQuota> m_storageQuota; |
| 66 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; | 69 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; |
| 67 mutable Member<DeprecatedStorageQuota> m_persistentStorage; | 70 mutable Member<DeprecatedStorageQuota> m_persistentStorage; |
| 71 mutable Member<StorageManager> m_storageManager; |
| 68 }; | 72 }; |
| 69 | 73 |
| 70 } // namespace blink | 74 } // namespace blink |
| 71 | 75 |
| 72 #endif // NavigatorStorageQuota_h | 76 #endif // NavigatorStorageQuota_h |
| OLD | NEW |