| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart, | 104 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_MediaPlayerStart, |
| 105 int /* player_id */) | 105 int /* player_id */) |
| 106 | 106 |
| 107 // Request the player to enter fullscreen. | 107 // Request the player to enter fullscreen. |
| 108 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, | 108 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_EnterFullscreen, |
| 109 int /* player_id */) | 109 int /* player_id */) |
| 110 | 110 |
| 111 // Request the player to exit fullscreen. | 111 // Request the player to exit fullscreen. |
| 112 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen, | 112 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_ExitFullscreen, |
| 113 int /* player_id */) | 113 int /* player_id */) |
| 114 |
| 115 // Request the player to use external surface for rendering. |
| 116 IPC_MESSAGE_ROUTED1(MediaPlayerHostMsg_RequestExternalSurface, |
| 117 int /* player_id */) |
| OLD | NEW |