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

Unified Diff: content/common/media/media_player_messages.h

Issue 11442056: Add external surface rendering mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 years 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: content/common/media/media_player_messages.h
diff --git a/content/common/media/media_player_messages.h b/content/common/media/media_player_messages.h
index 0adbfa4b9afae5c2bc195ae929a8ef49e409a97e..4387bc6510db1dc2350a900c45e5ca73ff17cf6b 100644
--- a/content/common/media/media_player_messages.h
+++ b/content/common/media/media_player_messages.h
@@ -72,6 +72,16 @@ IPC_MESSAGE_ROUTED1(MediaPlayerMsg_DidMediaPlayerPlay,
IPC_MESSAGE_ROUTED1(MediaPlayerMsg_DidMediaPlayerPause,
int /* player_id */)
+#if defined(OS_ANDROID)
ycheo (away) 2012/12/13 05:33:43 Do we need this? IMO, this file seems to be only f
wonsik2 2012/12/17 04:36:05 True, but other messages are relatively platform a
+// The player has entered external surface rendering mode.
+IPC_MESSAGE_ROUTED1(MediaPlayerMsg_DidEnterVideoView,
+ int /* player_id */)
+
+// The player exited external surface rendering mode.
+IPC_MESSAGE_ROUTED1(MediaPlayerMsg_DidExitVideoView,
+ int /* player_id */)
+#endif
+
// Messages for controllering the media playback in browser process ----------
// Destroy the media player object.

Powered by Google App Engine
This is Rietveld 408576698