| Index: Source/modules/quota/NavigatorStorageQuota.h
|
| diff --git a/Source/modules/quota/NavigatorStorageQuota.h b/Source/modules/quota/NavigatorStorageQuota.h
|
| index d9c480a292466a285beb8ccae78ebb1780083705..9527c282624728787d502ec56b58a3e84989924b 100644
|
| --- a/Source/modules/quota/NavigatorStorageQuota.h
|
| +++ b/Source/modules/quota/NavigatorStorageQuota.h
|
| @@ -42,11 +42,11 @@ class LocalFrame;
|
| class Navigator;
|
| class StorageQuota;
|
|
|
| -class NavigatorStorageQuota final : public NoBaseWillBeGarbageCollected<NavigatorStorageQuota>, public WillBeHeapSupplement<Navigator>, public DOMWindowProperty {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota);
|
| - DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(NavigatorStorageQuota);
|
| +class NavigatorStorageQuota final : public GarbageCollectedFinalized<NavigatorStorageQuota>, public HeapSupplement<Navigator>, DOMWindowProperty {
|
| + USING_GARBAGE_COLLECTED_MIXIN(NavigatorStorageQuota);
|
| public:
|
| static NavigatorStorageQuota& from(Navigator&);
|
| + virtual ~NavigatorStorageQuota();
|
|
|
| static StorageQuota* storageQuota(Navigator&);
|
| static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator&);
|
| @@ -62,9 +62,9 @@ private:
|
| explicit NavigatorStorageQuota(LocalFrame*);
|
| static const char* supplementName();
|
|
|
| - mutable PersistentWillBeMember<StorageQuota> m_storageQuota;
|
| - mutable PersistentWillBeMember<DeprecatedStorageQuota> m_temporaryStorage;
|
| - mutable PersistentWillBeMember<DeprecatedStorageQuota> m_persistentStorage;
|
| + mutable Member<StorageQuota> m_storageQuota;
|
| + mutable Member<DeprecatedStorageQuota> m_temporaryStorage;
|
| + mutable Member<DeprecatedStorageQuota> m_persistentStorage;
|
| };
|
|
|
| } // namespace blink
|
|
|