Chromium Code Reviews| 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) |
|
qinmin
2012/12/17 19:34:06
no need for OS_ANDROID, all the messages here are
wonsik2
2013/02/14 14:56:38
Done.
|
| +// The player has entered external surface rendering mode. |
| +IPC_MESSAGE_ROUTED1(MediaPlayerMsg_DidEnterVideoView, |
|
qinmin
2012/12/17 19:34:06
combine these with DidEnterFullscreen
wonsik2
2013/02/14 14:56:38
Done.
|
| + int /* player_id */) |
| + |
| +// The player exited external surface rendering mode. |
| +IPC_MESSAGE_ROUTED1(MediaPlayerMsg_DidExitVideoView, |
|
qinmin
2012/12/17 19:34:06
ditto
wonsik2
2013/02/14 14:56:38
Done.
|
| + int /* player_id */) |
| +#endif |
| + |
| // Messages for controllering the media playback in browser process ---------- |
| // Destroy the media player object. |