Index: Source/core/html/track/TextTrackCueList.h |
diff --git a/Source/core/html/track/TextTrackCueList.h b/Source/core/html/track/TextTrackCueList.h |
index 0f11f2b60c2de7ec35dd749a0dda0211619a59a4..3a6e169e4fc85b7a4426513d56dd51040aca1c7b 100644 |
--- a/Source/core/html/track/TextTrackCueList.h |
+++ b/Source/core/html/track/TextTrackCueList.h |
@@ -48,11 +48,11 @@ public: |
TextTrackCue* item(unsigned index) const; |
TextTrackCue* getCueById(const AtomicString&) const; |
- TextTrackCueList* activeCues(); |
bool add(PassRefPtrWillBeRawPtr<TextTrackCue>); |
bool remove(TextTrackCue*); |
+ void collectActiveCues(TextTrackCueList&) const; |
void updateCueIndex(TextTrackCue*); |
DECLARE_TRACE(); |
@@ -64,7 +64,6 @@ private: |
void invalidateCueIndexes(size_t); |
WillBeHeapVector<RefPtrWillBeMember<TextTrackCue>> m_list; |
- RefPtrWillBeMember<TextTrackCueList> m_activeCues; |
}; |
} // namespace blink |