Chromium Code Reviews| Index: public/platform/WebMediaPlayer.h |
| diff --git a/public/platform/WebMediaPlayer.h b/public/platform/WebMediaPlayer.h |
| index f329a926cbd2d1f578f8e096dd792256239171bb..53374412abfc2eddba7768ca838d91ecb7e5346b 100644 |
| --- a/public/platform/WebMediaPlayer.h |
| +++ b/public/platform/WebMediaPlayer.h |
| @@ -162,6 +162,10 @@ public: |
| virtual void exitFullscreen() { } |
| // Returns true if the player can enter fullscreen. |
| virtual bool canEnterFullscreen() const { return false; } |
| + |
|
philipj_slow
2014/03/13 10:00:04
extra blank line
acolwell GONE FROM CHROMIUM
2014/03/18 22:02:15
Done.
|
| + |
| + virtual void enabledAudioTrackChange(const WebString& audioTrackID, bool enabled) { } |
|
philipj_slow
2014/03/13 10:00:04
I guess this is where the extra complexity comes i
|
| + virtual void selectedVideoTrackChange(const WebString& unselectedTrackID, const WebString& selectedTrackID) { } |
|
philipj_slow
2014/03/13 10:00:04
Doesn't the backend already know which video track
acolwell GONE FROM CHROMIUM
2014/03/18 22:02:15
Yes. unselectedTrackID parameter removed.
|
| }; |
| } // namespace blink |