| 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..af9ac6adb1ac5d5868e2ec5fcbd583a3ae4fa00c 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*);
|
|
|
| VideoTrackList& videoTracks();
|
| - void selectedVideoTrackChanged(WebMediaPlayer::TrackId*);
|
| + void selectedVideoTrackChanged(VideoTrack*);
|
|
|
| TextTrack* addTextTrack(const AtomicString& kind, const AtomicString& label, const AtomicString& language, ExceptionState&);
|
|
|
|
|