| 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 27 matching lines...) Expand all Loading... |
| 38 IPC_STRUCT_TRAITS_END() | 38 IPC_STRUCT_TRAITS_END() |
| 39 | 39 |
| 40 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) | 40 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) |
| 41 IPC_STRUCT_TRAITS_MEMBER(last_rr) | 41 IPC_STRUCT_TRAITS_MEMBER(last_rr) |
| 42 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) | 42 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) |
| 43 IPC_STRUCT_TRAITS_END() | 43 IPC_STRUCT_TRAITS_END() |
| 44 | 44 |
| 45 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) | 45 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) |
| 46 IPC_STRUCT_TRAITS_MEMBER(ssrc) | 46 IPC_STRUCT_TRAITS_MEMBER(ssrc) |
| 47 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc) | 47 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc) |
| 48 IPC_STRUCT_TRAITS_MEMBER(c_name) | |
| 49 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type) | 48 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type) |
| 50 IPC_STRUCT_TRAITS_MEMBER(stored_frames) | 49 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) |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 base::TimeDelta /* dedupe_window */) | 148 base::TimeDelta /* dedupe_window */) |
| 150 | 149 |
| 151 IPC_MESSAGE_CONTROL2( | 150 IPC_MESSAGE_CONTROL2( |
| 152 CastHostMsg_New, | 151 CastHostMsg_New, |
| 153 int32 /* channel_id */, | 152 int32 /* channel_id */, |
| 154 net::IPEndPoint /*remote_end_point*/) | 153 net::IPEndPoint /*remote_end_point*/) |
| 155 | 154 |
| 156 IPC_MESSAGE_CONTROL1( | 155 IPC_MESSAGE_CONTROL1( |
| 157 CastHostMsg_Delete, | 156 CastHostMsg_Delete, |
| 158 int32 /* channel_id */) | 157 int32 /* channel_id */) |
| OLD | NEW |