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

Unified Diff: Source/core/html/track/WebVTTParser.h

Issue 63173020: Split VTTCue from TextTrackCue (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/VTTCue.idl ('k') | Source/core/html/track/WebVTTParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/WebVTTParser.h
diff --git a/Source/core/html/track/WebVTTParser.h b/Source/core/html/track/WebVTTParser.h
index 27e026883ecc54fd9dd363014b8a2dc3672f897c..531044f8756369492c7e3c996cfd68d40eacf599 100644
--- a/Source/core/html/track/WebVTTParser.h
+++ b/Source/core/html/track/WebVTTParser.h
@@ -36,7 +36,7 @@
#include "core/dom/DocumentFragment.h"
#include "core/fetch/TextResourceDecoder.h"
#include "core/html/track/BufferedLineReader.h"
-#include "core/html/track/TextTrackCue.h"
+#include "core/html/track/VTTCue.h"
#include "core/html/track/VTTRegion.h"
#include "core/html/track/WebVTTTokenizer.h"
#include "wtf/PassOwnPtr.h"
@@ -109,7 +109,7 @@ public:
void flush();
// Transfers ownership of last parsed cues to caller.
- void getNewCues(Vector<RefPtr<TextTrackCue> >&);
+ void getNewCues(Vector<RefPtr<VTTCue> >&);
void getNewRegions(Vector<RefPtr<VTTRegion> >&);
private:
@@ -144,7 +144,7 @@ private:
WebVTTParserClient* m_client;
- Vector<RefPtr<TextTrackCue> > m_cuelist;
+ Vector<RefPtr<VTTCue> > m_cuelist;
Vector<RefPtr<VTTRegion> > m_regionList;
};
« no previous file with comments | « Source/core/html/track/VTTCue.idl ('k') | Source/core/html/track/WebVTTParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698