| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 virtual void didResumePlaybackBlockedForKey() override; | 75 virtual void didResumePlaybackBlockedForKey() override; |
| 76 | 76 |
| 77 virtual void setWebLayer(WebLayer*) override; | 77 virtual void setWebLayer(WebLayer*) override; |
| 78 virtual WebMediaPlayer::TrackId addAudioTrack(const WebString& id, AudioTrac
kKind, const WebString& label, const WebString& language, bool enabled) override
; | 78 virtual WebMediaPlayer::TrackId addAudioTrack(const WebString& id, AudioTrac
kKind, const WebString& label, const WebString& language, bool enabled) override
; |
| 79 virtual void removeAudioTrack(WebMediaPlayer::TrackId) override; | 79 virtual void removeAudioTrack(WebMediaPlayer::TrackId) override; |
| 80 virtual WebMediaPlayer::TrackId addVideoTrack(const WebString& id, VideoTrac
kKind, const WebString& label, const WebString& language, bool selected) overrid
e; | 80 virtual WebMediaPlayer::TrackId addVideoTrack(const WebString& id, VideoTrac
kKind, const WebString& label, const WebString& language, bool selected) overrid
e; |
| 81 virtual void removeVideoTrack(WebMediaPlayer::TrackId) override; | 81 virtual void removeVideoTrack(WebMediaPlayer::TrackId) override; |
| 82 virtual void addTextTrack(WebInbandTextTrack*) override; | 82 virtual void addTextTrack(WebInbandTextTrack*) override; |
| 83 virtual void removeTextTrack(WebInbandTextTrack*) override; | 83 virtual void removeTextTrack(WebInbandTextTrack*) override; |
| 84 virtual void mediaSourceOpened(WebMediaSource*) override; | 84 virtual void mediaSourceOpened(WebMediaSource*) override; |
| 85 virtual void requestFullscreen() override; | |
| 86 virtual void requestSeek(double) override; | 85 virtual void requestSeek(double) override; |
| 87 virtual void remoteRouteAvailabilityChanged(bool) override; | 86 virtual void remoteRouteAvailabilityChanged(bool) override; |
| 88 virtual void connectedToRemoteDevice() override; | 87 virtual void connectedToRemoteDevice() override; |
| 89 virtual void disconnectedFromRemoteDevice() override; | 88 virtual void disconnectedFromRemoteDevice() override; |
| 90 | 89 |
| 91 // MediaPlayer methods: | 90 // MediaPlayer methods: |
| 92 virtual WebMediaPlayer* webMediaPlayer() const override; | 91 virtual WebMediaPlayer* webMediaPlayer() const override; |
| 93 virtual void load(WebMediaPlayer::LoadType, const WTF::String& url, WebMedia
Player::CORSMode) override; | 92 virtual void load(WebMediaPlayer::LoadType, const WTF::String& url, WebMedia
Player::CORSMode) override; |
| 94 virtual void setPreload(MediaPlayer::Preload) override; | 93 virtual void setPreload(MediaPlayer::Preload) override; |
| 95 | 94 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Mutex provideInputLock; | 151 Mutex provideInputLock; |
| 153 }; | 152 }; |
| 154 | 153 |
| 155 AudioSourceProviderImpl m_audioSourceProvider; | 154 AudioSourceProviderImpl m_audioSourceProvider; |
| 156 #endif | 155 #endif |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace blink | 158 } // namespace blink |
| 160 | 159 |
| 161 #endif | 160 #endif |
| OLD | NEW |