Index: Source/core/html/HTMLMediaElement.h |
diff --git a/Source/core/html/HTMLMediaElement.h b/Source/core/html/HTMLMediaElement.h |
index bdde429a57a421f59844f91101663557a9fb08f9..d8fc7726599e54c71aca466684d879efa29f1da7 100644 |
--- a/Source/core/html/HTMLMediaElement.h |
+++ b/Source/core/html/HTMLMediaElement.h |
@@ -210,6 +210,7 @@ public: |
void textTrackReadyStateChanged(TextTrack*); |
void textTrackModeChanged(TextTrack*); |
+ void setAutomaticTextTrackSelection(bool); |
fs
2015/04/17 11:54:46
This should probably have an "Enabled" suffix to r
fs
2015/04/17 12:06:25
With the below, I think this could just be:
void
srivats
2015/04/21 01:48:55
Done.
|
// EventTarget function. |
// Both Node (via HTMLElement) and ActiveDOMObject define this method, which |
@@ -563,6 +564,7 @@ private: |
RefPtrWillBeMember<VideoTrackList> m_videoTracks; |
RefPtrWillBeMember<TextTrackList> m_textTracks; |
WillBeHeapVector<RefPtrWillBeMember<TextTrack>> m_textTracksWhenResourceSelectionBegan; |
+ bool m_performAutomaticTextTrackSelection : 1; |
fs
2015/04/17 11:54:46
Move this up to m_closedCaptionsVisible or the oth
fs
2015/04/17 12:06:25
I think we should take the opportunity, and introd
srivats
2015/04/21 01:48:55
Done.
|
OwnPtrWillBeMember<CueTimeline> m_cueTimeline; |