| Index: third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
|
| diff --git a/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h b/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
|
| index 222c7ffb5098d2822fda863b8147941c0a45d5f9..7c525a9930a6761562ab47caa359ab4e5f9a9f84 100644
|
| --- a/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
|
| +++ b/third_party/WebKit/Source/modules/quota/DOMWindowQuota.h
|
| @@ -40,10 +40,8 @@ namespace blink {
|
| class DeprecatedStorageInfo;
|
| class DOMWindow;
|
|
|
| -class DOMWindowQuota final : public NoBaseWillBeGarbageCollected<DOMWindowQuota>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowQuota);
|
| - DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowQuota);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(DOMWindowQuota);
|
| +class DOMWindowQuota final : public GarbageCollected<DOMWindowQuota>, public HeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
|
| + USING_GARBAGE_COLLECTED_MIXIN(DOMWindowQuota);
|
| public:
|
| static DOMWindowQuota& from(LocalDOMWindow&);
|
| static DeprecatedStorageInfo* webkitStorageInfo(DOMWindow&);
|
| @@ -55,7 +53,7 @@ private:
|
| explicit DOMWindowQuota(LocalDOMWindow&);
|
| static const char* supplementName();
|
|
|
| - mutable PersistentWillBeMember<DeprecatedStorageInfo> m_storageInfo;
|
| + mutable Member<DeprecatedStorageInfo> m_storageInfo;
|
| };
|
|
|
| } // namespace blink
|
|
|