| 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();
|
|
|