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

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

Issue 913133003: Move text track active list management to CueTimeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rename to CueTimeline. 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
Index: Source/core/html/track/TextTrack.h
diff --git a/Source/core/html/track/TextTrack.h b/Source/core/html/track/TextTrack.h
index a99c260e4ca7660c7f2a115dd83261c30df007dc..aff0ed7191d6d4bdbc492e54f3722a016792b4b1 100644
--- a/Source/core/html/track/TextTrack.h
+++ b/Source/core/html/track/TextTrack.h
@@ -34,6 +34,7 @@
namespace blink {
+class CueTimeline;
class ExceptionState;
class HTMLMediaElement;
class TextTrack;
@@ -124,6 +125,8 @@ protected:
virtual bool isValidKind(const AtomicString& kind) const override { return isValidKindKeyword(kind); }
virtual AtomicString defaultKind() const override { return subtitlesKeyword(); }
+ CueTimeline* cueTimeline() const;
+
RefPtrWillBeMember<TextTrackCueList> m_cues;
private:

Powered by Google App Engine
This is Rietveld 408576698