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

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

Issue 958903002: Move activeCues ownership to TextTrack (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 | « no previous file | Source/core/html/track/TextTrack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrack.h
diff --git a/Source/core/html/track/TextTrack.h b/Source/core/html/track/TextTrack.h
index eee03f8e4a72107e574f34ecc2860abb880fa711..28a2915297a9a09b07f85fb4a46652b1fb35294d 100644
--- a/Source/core/html/track/TextTrack.h
+++ b/Source/core/html/track/TextTrack.h
@@ -79,7 +79,7 @@ public:
void setReadinessState(ReadinessState state) { m_readinessState = state; }
TextTrackCueList* cues();
- TextTrackCueList* activeCues() const;
+ TextTrackCueList* activeCues();
HTMLMediaElement* mediaElement() const;
Node* owner() const;
@@ -132,6 +132,7 @@ private:
TextTrackCueList* ensureTextTrackCueList();
RefPtrWillBeMember<TextTrackCueList> m_cues;
+ RefPtrWillBeMember<TextTrackCueList> m_activeCues;
VTTRegionList* ensureVTTRegionList();
RefPtrWillBeMember<VTTRegionList> m_regions;
« no previous file with comments | « no previous file | Source/core/html/track/TextTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698