OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 the Cast transport API. | 5 // IPC messages for the Cast transport API. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
9 #include "media/cast/cast_sender.h" | 9 #include "media/cast/cast_sender.h" |
10 #include "media/cast/logging/logging_defines.h" | 10 #include "media/cast/logging/logging_defines.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 | 40 |
41 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) | 41 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) |
42 IPC_STRUCT_TRAITS_MEMBER(last_rr) | 42 IPC_STRUCT_TRAITS_MEMBER(last_rr) |
43 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) | 43 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) |
44 IPC_STRUCT_TRAITS_END() | 44 IPC_STRUCT_TRAITS_END() |
45 | 45 |
46 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) | 46 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) |
47 IPC_STRUCT_TRAITS_MEMBER(ssrc) | 47 IPC_STRUCT_TRAITS_MEMBER(ssrc) |
48 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc) | 48 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc) |
49 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type) | 49 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type) |
50 IPC_STRUCT_TRAITS_MEMBER(stored_frames) | |
51 IPC_STRUCT_TRAITS_MEMBER(aes_key) | 50 IPC_STRUCT_TRAITS_MEMBER(aes_key) |
52 IPC_STRUCT_TRAITS_MEMBER(aes_iv_mask) | 51 IPC_STRUCT_TRAITS_MEMBER(aes_iv_mask) |
53 IPC_STRUCT_TRAITS_END() | 52 IPC_STRUCT_TRAITS_END() |
54 | 53 |
55 IPC_STRUCT_TRAITS_BEGIN(media::cast::PacketEvent) | 54 IPC_STRUCT_TRAITS_BEGIN(media::cast::PacketEvent) |
56 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp) | 55 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp) |
57 IPC_STRUCT_TRAITS_MEMBER(frame_id) | 56 IPC_STRUCT_TRAITS_MEMBER(frame_id) |
58 IPC_STRUCT_TRAITS_MEMBER(max_packet_id) | 57 IPC_STRUCT_TRAITS_MEMBER(max_packet_id) |
59 IPC_STRUCT_TRAITS_MEMBER(packet_id) | 58 IPC_STRUCT_TRAITS_MEMBER(packet_id) |
60 IPC_STRUCT_TRAITS_MEMBER(size) | 59 IPC_STRUCT_TRAITS_MEMBER(size) |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 142 |
144 IPC_MESSAGE_CONTROL3( | 143 IPC_MESSAGE_CONTROL3( |
145 CastHostMsg_New, | 144 CastHostMsg_New, |
146 int32 /* channel_id */, | 145 int32 /* channel_id */, |
147 net::IPEndPoint /* remote_end_point */, | 146 net::IPEndPoint /* remote_end_point */, |
148 base::DictionaryValue /* options */) | 147 base::DictionaryValue /* options */) |
149 | 148 |
150 IPC_MESSAGE_CONTROL1( | 149 IPC_MESSAGE_CONTROL1( |
151 CastHostMsg_Delete, | 150 CastHostMsg_Delete, |
152 int32 /* channel_id */) | 151 int32 /* channel_id */) |
OLD | NEW |