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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTRegion.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/html/track/vtt/VTTRegion.h
diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTRegion.h b/third_party/WebKit/Source/core/html/track/vtt/VTTRegion.h
index 437fe54159adfabdb73817d72787983e35382e0d..39df53cd101ca2096d551a5657c8b07a4a5b69be 100644
--- a/third_party/WebKit/Source/core/html/track/vtt/VTTRegion.h
+++ b/third_party/WebKit/Source/core/html/track/vtt/VTTRegion.h
@@ -89,9 +89,9 @@ public:
bool isScrollingRegion() { return m_scroll; }
- PassRefPtrWillBeRawPtr<HTMLDivElement> getDisplayTree(Document&);
+ RawPtr<HTMLDivElement> getDisplayTree(Document&);
- void appendVTTCueBox(PassRefPtrWillBeRawPtr<VTTCueBox>);
+ void appendVTTCueBox(RawPtr<VTTCueBox>);
void displayLastVTTCueBox();
void willRemoveVTTCueBox(VTTCueBox*);
@@ -133,8 +133,8 @@ private:
// The cue container is the container that is scrolled up to obtain the
// effect of scrolling cues when this is enabled for the regions.
- RefPtrWillBeMember<HTMLDivElement> m_cueContainer;
- RefPtrWillBeMember<HTMLDivElement> m_regionDisplayTree;
+ Member<HTMLDivElement> m_cueContainer;
+ Member<HTMLDivElement> m_regionDisplayTree;
// The member variable track can be a raw pointer as it will never
// reference a destroyed TextTrack, as this member variable

Powered by Google App Engine
This is Rietveld 408576698