Chromium Code Reviews| Index: Source/modules/quota/DOMWindowQuota.h |
| diff --git a/Source/modules/quota/DOMWindowQuota.h b/Source/modules/quota/DOMWindowQuota.h |
| index 373d213e8643e34c682b06f287ac1081d90e7777..e8b38021db918f3e8f5d0afc7248549464d7d532 100644 |
| --- a/Source/modules/quota/DOMWindowQuota.h |
| +++ b/Source/modules/quota/DOMWindowQuota.h |
| @@ -40,18 +40,21 @@ namespace WebCore { |
| class DeprecatedStorageInfo; |
| class DOMWindow; |
| -class DOMWindowQuota FINAL : public Supplement<DOMWindow>, public DOMWindowProperty { |
| +class DOMWindowQuota FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowQuota>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty { |
|
haraken
2014/03/27 00:59:03
Ditto.
sof
2014/03/27 07:25:51
Same re: DOMWindowProperty.
|
| + WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowQuota); |
| public: |
| virtual ~DOMWindowQuota(); |
| static DOMWindowQuota& from(DOMWindow&); |
| static DeprecatedStorageInfo* webkitStorageInfo(DOMWindow&); |
| DeprecatedStorageInfo* webkitStorageInfo() const; |
| + void trace(Visitor*); |
| + |
| private: |
| explicit DOMWindowQuota(DOMWindow&); |
| static const char* supplementName(); |
| - mutable RefPtrWillBePersistent<DeprecatedStorageInfo> m_storageInfo; |
| + mutable RefPtrWillBeMember<DeprecatedStorageInfo> m_storageInfo; |
| }; |
| } // namespace WebCore |