Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(627)

Unified Diff: third_party/WebKit/Source/core/page/PagePopupSupplement.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698