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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTParser.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/VTTParser.h
diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h b/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
index 3293100dd3697c6c309119fd9de2cbd1652c424a..ae9b24d4a84e31d93dce45314f79f6358104eac4 100644
--- a/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
+++ b/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
@@ -101,7 +101,7 @@ public:
static bool parseFloatPercentageValuePair(VTTScanner&, char, FloatPoint&);
// Create the DocumentFragment representation of the WebVTT cue text.
- static PassRefPtrWillBeRawPtr<DocumentFragment> createDocumentFragmentFromCueText(Document&, const String&);
+ static RawPtr<DocumentFragment> createDocumentFragmentFromCueText(Document&, const String&);
// Input data to the parser to parse.
void parseBytes(const char* data, size_t length);
@@ -116,7 +116,7 @@ public:
private:
VTTParser(VTTParserClient*, Document&);
- RawPtrWillBeMember<Document> m_document;
+ Member<Document> m_document;
ParseState m_state;
void parse();

Powered by Google App Engine
This is Rietveld 408576698