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 "base/time/time.h" | 8 #include "base/time/time.h" |
9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
10 #include "content/common/media/media_player_messages_enums_android.h" | 10 #include "content/common/media/media_player_messages_enums_android.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 // Parameters to describe a media player | 62 // Parameters to describe a media player |
63 IPC_STRUCT_BEGIN(MediaPlayerHostMsg_Initialize_Params) | 63 IPC_STRUCT_BEGIN(MediaPlayerHostMsg_Initialize_Params) |
64 IPC_STRUCT_MEMBER(MediaPlayerHostMsg_Initialize_Type, type) | 64 IPC_STRUCT_MEMBER(MediaPlayerHostMsg_Initialize_Type, type) |
65 IPC_STRUCT_MEMBER(int, player_id) | 65 IPC_STRUCT_MEMBER(int, player_id) |
66 IPC_STRUCT_MEMBER(int, demuxer_client_id) | 66 IPC_STRUCT_MEMBER(int, demuxer_client_id) |
67 IPC_STRUCT_MEMBER(GURL, url) | 67 IPC_STRUCT_MEMBER(GURL, url) |
68 IPC_STRUCT_MEMBER(GURL, first_party_for_cookies) | 68 IPC_STRUCT_MEMBER(GURL, first_party_for_cookies) |
69 IPC_STRUCT_MEMBER(GURL, frame_url) | 69 IPC_STRUCT_MEMBER(GURL, frame_url) |
70 IPC_STRUCT_MEMBER(bool, allow_credentials) | 70 IPC_STRUCT_MEMBER(bool, allow_credentials) |
| 71 IPC_STRUCT_MEMBER(int, session_id) |
71 IPC_STRUCT_END() | 72 IPC_STRUCT_END() |
72 | 73 |
73 // Chrome for Android seek message sequence is: | 74 // Chrome for Android seek message sequence is: |
74 // 1. Renderer->Browser MediaPlayerHostMsg_Seek | 75 // 1. Renderer->Browser MediaPlayerHostMsg_Seek |
75 // This is the beginning of actual seek flow in response to web app requests | 76 // This is the beginning of actual seek flow in response to web app requests |
76 // for seeks and browser MediaPlayerMsg_SeekRequests. With this message, | 77 // for seeks and browser MediaPlayerMsg_SeekRequests. With this message, |
77 // the renderer asks browser to perform actual seek. At most one of these | 78 // the renderer asks browser to perform actual seek. At most one of these |
78 // actual seeks will be in process between this message and renderer's later | 79 // actual seeks will be in process between this message and renderer's later |
79 // receipt of MediaPlayerMsg_SeekCompleted from the browser. | 80 // receipt of MediaPlayerMsg_SeekCompleted from the browser. |
80 // 2. Browser->Renderer MediaPlayerMsg_SeekCompleted | 81 // 2. Browser->Renderer MediaPlayerMsg_SeekCompleted |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 | 274 |
274 #if defined(VIDEO_HOLE) | 275 #if defined(VIDEO_HOLE) |
275 // Notify the player about the external surface, requesting it if necessary. | 276 // Notify the player about the external surface, requesting it if necessary. |
276 // |is_request| true if the player is requesting the external surface. | 277 // |is_request| true if the player is requesting the external surface. |
277 // |rect| the boundary rectangle of the video element. | 278 // |rect| the boundary rectangle of the video element. |
278 IPC_MESSAGE_ROUTED3(MediaPlayerHostMsg_NotifyExternalSurface, | 279 IPC_MESSAGE_ROUTED3(MediaPlayerHostMsg_NotifyExternalSurface, |
279 int /* player_id */, | 280 int /* player_id */, |
280 bool /* is_request */, | 281 bool /* is_request */, |
281 gfx::RectF /* rect */) | 282 gfx::RectF /* rect */) |
282 #endif // defined(VIDEO_HOLE) | 283 #endif // defined(VIDEO_HOLE) |
OLD | NEW |