OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // IPC messages for android media player. | 5 // IPC messages for android media player. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/time.h" | 10 #include "base/time.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart, | 105 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart, |
106 int /* player_id */) | 106 int /* player_id */) |
107 | 107 |
108 // Request the player to enter fullscreen. | 108 // Request the player to enter fullscreen. |
109 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, | 109 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, |
110 int /* player_id */) | 110 int /* player_id */) |
111 | 111 |
112 // Request the player to exit fullscreen. | 112 // Request the player to exit fullscreen. |
113 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen, | 113 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen, |
114 int /* player_id */) | 114 int /* player_id */) |
| 115 |
| 116 // Request the player to use external surface for rendering. |
| 117 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestExternalSurface, |
| 118 int /* player_id */) |
OLD | NEW |