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

Unified Diff: third_party/WebKit/Source/core/dom/Fullscreen.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/dom/Fullscreen.h
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.h b/third_party/WebKit/Source/core/dom/Fullscreen.h
index f7f4b39b9861a3e6e081b626aed66e21aaf7351d..3d205fd525bf988ae88d55cea94f6e72de62215e 100644
--- a/third_party/WebKit/Source/core/dom/Fullscreen.h
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.h
@@ -45,11 +45,10 @@ class LayoutFullScreen;
class ComputedStyle;
class CORE_EXPORT Fullscreen final
- : public NoBaseWillBeGarbageCollectedFinalized<Fullscreen>
- , public WillBeHeapSupplement<Document>
+ : public GarbageCollectedFinalized<Fullscreen>
+ , public HeapSupplement<Document>
, public DocumentLifecycleObserver {
- USING_FAST_MALLOC_WILL_BE_REMOVED(Fullscreen);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Fullscreen);
+ USING_GARBAGE_COLLECTED_MIXIN(Fullscreen);
public:
virtual ~Fullscreen();
static const char* supplementName();
@@ -109,11 +108,11 @@ private:
void enqueueErrorEvent(Element&, RequestType);
void eventQueueTimerFired(Timer<Fullscreen>*);
- RefPtrWillBeMember<Element> m_fullScreenElement;
- WillBeHeapVector<std::pair<RefPtrWillBeMember<Element>, RequestType>> m_fullScreenElementStack;
+ Member<Element> m_fullScreenElement;
+ HeapVector<std::pair<Member<Element>, RequestType>> m_fullScreenElementStack;
LayoutFullScreen* m_fullScreenLayoutObject;
Timer<Fullscreen> m_eventQueueTimer;
- WillBeHeapDeque<RefPtrWillBeMember<Event>> m_eventQueue;
+ HeapDeque<Member<Event>> m_eventQueue;
LayoutRect m_savedPlaceholderFrameRect;
RefPtr<ComputedStyle> m_savedPlaceholderComputedStyle;
};
« no previous file with comments | « third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.h ('k') | third_party/WebKit/Source/core/dom/Fullscreen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698