| Index: third_party/WebKit/Source/core/page/PagePopupSupplement.h
|
| diff --git a/third_party/WebKit/Source/core/page/PagePopupSupplement.h b/third_party/WebKit/Source/core/page/PagePopupSupplement.h
|
| index a04f3b4d1753f8a48db8768a7b461c3c7fa82a97..7a6b2866563fcf4bff3d93e5dcb9ee7e03967a0f 100644
|
| --- a/third_party/WebKit/Source/core/page/PagePopupSupplement.h
|
| +++ b/third_party/WebKit/Source/core/page/PagePopupSupplement.h
|
| @@ -42,23 +42,19 @@ class PagePopup;
|
| class PagePopupClient;
|
| class PagePopupController;
|
|
|
| -class CORE_EXPORT PagePopupSupplement final : public NoBaseWillBeGarbageCollected<PagePopupSupplement>, public WillBeHeapSupplement<LocalFrame> {
|
| - WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(PagePopupSupplement);
|
| - USING_FAST_MALLOC_WILL_BE_REMOVED(PagePopupSupplement);
|
| -
|
| +class CORE_EXPORT PagePopupSupplement final : public GarbageCollected<PagePopupSupplement>, public HeapSupplement<LocalFrame> {
|
| + USING_GARBAGE_COLLECTED_MIXIN(PagePopupSupplement);
|
| public:
|
| static PagePopupController* pagePopupController(LocalFrame&);
|
| static void install(LocalFrame&, PagePopup&, PagePopupClient*);
|
| static void uninstall(LocalFrame&);
|
| - DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(PagePopupSupplement);
|
| -
|
| DECLARE_TRACE();
|
|
|
| private:
|
| PagePopupSupplement(PagePopup&, PagePopupClient*);
|
| static const char* supplementName();
|
|
|
| - RefPtrWillBeMember<PagePopupController> m_controller;
|
| + Member<PagePopupController> m_controller;
|
| };
|
|
|
| } // namespace blink
|
|
|