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

Unified Diff: Source/core/html/track/vtt/VTTParser.h

Issue 941973005: Push cue timeline management out of LoadableTextTrack (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/core/html/track/TextTrack.cpp ('k') | Source/core/html/track/vtt/VTTParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/vtt/VTTParser.h
diff --git a/Source/core/html/track/vtt/VTTParser.h b/Source/core/html/track/vtt/VTTParser.h
index 6486ea122025261ac30cc77ffbc0d7abc47c8d9f..06fe079dd9eb1fc16a7269d3408fc27376efe602 100644
--- a/Source/core/html/track/vtt/VTTParser.h
+++ b/Source/core/html/track/vtt/VTTParser.h
@@ -105,7 +105,7 @@ public:
void flush();
// Transfers ownership of last parsed cues to caller.
- void getNewCues(WillBeHeapVector<RefPtrWillBeMember<VTTCue>>&);
+ void getNewCues(WillBeHeapVector<RefPtrWillBeMember<TextTrackCue>>&);
void getNewRegions(WillBeHeapVector<RefPtrWillBeMember<VTTRegion>>&);
DECLARE_TRACE();
@@ -143,7 +143,7 @@ private:
VTTParserClient* m_client;
- WillBeHeapVector<RefPtrWillBeMember<VTTCue>> m_cueList;
+ WillBeHeapVector<RefPtrWillBeMember<TextTrackCue>> m_cueList;
WillBeHeapVector<RefPtrWillBeMember<VTTRegion>> m_regionList;
};
« no previous file with comments | « Source/core/html/track/TextTrack.cpp ('k') | Source/core/html/track/vtt/VTTParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698