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

Unified Diff: webkit/media/android/webmediaplayer_proxy_android.h

Issue 10979047: Upstream fullscreen video implementation for android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing comments Created 8 years, 2 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: webkit/media/android/webmediaplayer_proxy_android.h
diff --git a/webkit/media/android/webmediaplayer_proxy_android.h b/webkit/media/android/webmediaplayer_proxy_android.h
index aeabe787641ec16315b923bdee29bdee2d95925a..020862e4ad32d4d98bdbae9342b3bceae74c1e84 100644
--- a/webkit/media/android/webmediaplayer_proxy_android.h
+++ b/webkit/media/android/webmediaplayer_proxy_android.h
@@ -37,6 +37,12 @@ class WebMediaPlayerProxyAndroid {
// Destroy the player in the browser process
virtual void DestroyPlayer(int player_id) = 0;
+
+ // Request the player to enter fullscreen.
+ virtual void EnterFullscreen(int player_id) = 0;
+
+ // Request the player to exit fullscreen.
+ virtual void ExitFullscreen(int player_id) = 0;
};
} // namespace webkit_media

Powered by Google App Engine
This is Rietveld 408576698