Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Unified Diff: public/platform/WebMediaPlayer.h

Issue 284513003: Implement AudioTrack, AudioTrackList, VideoTrack, and VideoTrackList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: platform handle per track Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: public/platform/WebMediaPlayer.h
diff --git a/public/platform/WebMediaPlayer.h b/public/platform/WebMediaPlayer.h
index f329a926cbd2d1f578f8e096dd792256239171bb..3f323e78a7fb97df22edd6fef4206ee2dd56a989 100644
--- a/public/platform/WebMediaPlayer.h
+++ b/public/platform/WebMediaPlayer.h
@@ -162,6 +162,9 @@ public:
virtual void exitFullscreen() { }
// Returns true if the player can enter fullscreen.
virtual bool canEnterFullscreen() const { return false; }
+
+ virtual void enabledAudioTracksChanged(const WebVector<uintptr_t>& enabledTrackHandles) { }
+ virtual void selectedVideoTrackChanged(uintptr_t selectedTrackHandle) { }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698