Index: third_party/WebKit/Source/core/html/HTMLMediaElement.h |
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h |
index ebcf044d88141eacbee2c48399ee4e095d1e0624..1967018ef1ca073c07d3ebd23ba53c62d1b5e1f5 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h |
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h |
@@ -45,6 +45,7 @@ |
namespace blink { |
class AudioSourceProviderClient; |
+class AudioTrack; |
class AudioTrackList; |
class AutoplayUmaHelper; |
class ContentType; |
@@ -65,6 +66,7 @@ class TextTrackContainer; |
class TextTrackList; |
class TimeRanges; |
class URLRegistry; |
+class VideoTrack; |
class VideoTrackList; |
class WebAudioSourceProvider; |
class WebInbandTextTrack; |
@@ -184,10 +186,10 @@ public: |
void togglePlayState(); |
AudioTrackList& audioTracks(); |
- void audioTrackChanged(WebMediaPlayer::TrackId, bool enabled); |
+ void audioTrackChanged(AudioTrack*, bool enabled); |
VideoTrackList& videoTracks(); |
- void selectedVideoTrackChanged(WebMediaPlayer::TrackId*); |
+ void selectedVideoTrackChanged(VideoTrack*, bool selected); |
TextTrack* addTextTrack(const AtomicString& kind, const AtomicString& label, const AtomicString& language, ExceptionState&); |