Chromium Code Reviews| Index: Source/core/html/HTMLMediaElement.h |
| diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
| index 3141ec62f3fa359a74c88b1118b9414d2550d465..4a978e0cc60f139b7c8f07e631a20652d6b90542 100644 |
| --- a/Source/core/html/HTMLMediaElement.h |
| +++ b/Source/core/html/HTMLMediaElement.h |
| @@ -187,11 +187,13 @@ public: |
| CueList currentlyActiveCues() const { return m_currentlyActiveCues; } |
| void addTextTrack(TextTrack*); |
| - void removeTextTrack(TextTrack*); |
| - void removeAllInbandTracks(); |
| + void removeTextTrack(TextTrack*, bool scheduleEvent); |
|
adamk
2014/02/26 00:45:32
Please make this argument an enum so that the call
|
| void closeCaptionTracksChanged(); |
| void notifyMediaPlayerOfTextTrackChanges(); |
| + // Implements the "forget the media element's media-resource-specific tracks" algorithm in the HTML5 spec. |
| + void forgetResourceSpecificTracks(); |
| + |
| void didAddTrackElement(HTMLTrackElement*); |
| void didRemoveTrackElement(HTMLTrackElement*); |