| 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 25 matching lines...) Expand all Loading... |
| 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 StorageManager; |
| 44 class StorageQuota; | 44 class StorageQuota; |
| 45 | 45 |
| 46 class NavigatorStorageQuota final : public GarbageCollectedFinalized<NavigatorSt
orageQuota>, public HeapSupplement<Navigator>, public DOMWindowProperty { | 46 class NavigatorStorageQuota final : public GarbageCollectedFinalized<NavigatorSt
orageQuota>, public Supplement<Navigator>, public DOMWindowProperty { |
| 47 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); | 47 USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota); |
| 48 public: | 48 public: |
| 49 static NavigatorStorageQuota& from(Navigator&); | 49 static NavigatorStorageQuota& from(Navigator&); |
| 50 virtual ~NavigatorStorageQuota(); | 50 virtual ~NavigatorStorageQuota(); |
| 51 | 51 |
| 52 static StorageQuota* storageQuota(Navigator&); | 52 static StorageQuota* storageQuota(Navigator&); |
| 53 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); | 53 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&); |
| 54 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); | 54 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator&); |
| 55 static StorageManager* storage(Navigator&); | 55 static StorageManager* storage(Navigator&); |
| 56 | 56 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 67 | 67 |
| 68 mutable Member<StorageQuota> m_storageQuota; | 68 mutable Member<StorageQuota> m_storageQuota; |
| 69 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; | 69 mutable Member<DeprecatedStorageQuota> m_temporaryStorage; |
| 70 mutable Member<DeprecatedStorageQuota> m_persistentStorage; | 70 mutable Member<DeprecatedStorageQuota> m_persistentStorage; |
| 71 mutable Member<StorageManager> m_storageManager; | 71 mutable Member<StorageManager> m_storageManager; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace blink | 74 } // namespace blink |
| 75 | 75 |
| 76 #endif // NavigatorStorageQuota_h | 76 #endif // NavigatorStorageQuota_h |
| OLD | NEW |