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

Unified Diff: third_party/WebKit/Source/core/page/DOMWindowPagePopup.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, 10 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/DOMWindowPagePopup.h
diff --git a/third_party/WebKit/Source/core/page/DOMWindowPagePopup.h b/third_party/WebKit/Source/core/page/DOMWindowPagePopup.h
index b80d00ad08b582fcf2578b6e0d8f5dcbb0e9cba8..49e461d9058a8c91853b3315519a76b87d965c97 100644
--- a/third_party/WebKit/Source/core/page/DOMWindowPagePopup.h
+++ b/third_party/WebKit/Source/core/page/DOMWindowPagePopup.h
@@ -42,22 +42,19 @@ class PagePopup;
class PagePopupClient;
class PagePopupController;
-class CORE_EXPORT DOMWindowPagePopup final : public NoBaseWillBeGarbageCollected<DOMWindowPagePopup>, public WillBeHeapSupplement<LocalDOMWindow> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowPagePopup);
- USING_FAST_MALLOC_WILL_BE_REMOVED(DOMWindowPagePopup);
+class CORE_EXPORT DOMWindowPagePopup final : public GarbageCollected<DOMWindowPagePopup>, public HeapSupplement<LocalDOMWindow> {
+ USING_GARBAGE_COLLECTED_MIXIN(DOMWindowPagePopup);
public:
static PagePopupController* pagePopupController(DOMWindow&);
static void install(LocalDOMWindow&, PagePopup&, PagePopupClient*);
static void uninstall(LocalDOMWindow&);
- DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowPagePopup);
-
DECLARE_TRACE();
private:
DOMWindowPagePopup(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