| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 CastHostMsg_InsertCodedVideoFrame, | 126 CastHostMsg_InsertCodedVideoFrame, |
| 127 int32 /* channel_id */, | 127 int32 /* channel_id */, |
| 128 media::cast::transport::EncodedFrame /* video_frame */) | 128 media::cast::transport::EncodedFrame /* video_frame */) |
| 129 | 129 |
| 130 IPC_MESSAGE_CONTROL3( | 130 IPC_MESSAGE_CONTROL3( |
| 131 CastHostMsg_SendRtcpFromRtpSender, | 131 CastHostMsg_SendRtcpFromRtpSender, |
| 132 int32 /* channel_id */, | 132 int32 /* channel_id */, |
| 133 media::cast::transport::SendRtcpFromRtpSenderData /* data */, | 133 media::cast::transport::SendRtcpFromRtpSenderData /* data */, |
| 134 media::cast::transport::RtcpDlrrReportBlock /* dlrr */) | 134 media::cast::transport::RtcpDlrrReportBlock /* dlrr */) |
| 135 | 135 |
| 136 IPC_MESSAGE_CONTROL4( | 136 IPC_MESSAGE_CONTROL5( |
| 137 CastHostMsg_ResendPackets, | 137 CastHostMsg_ResendPackets, |
| 138 int32 /* channel_id */, | 138 int32 /* channel_id */, |
| 139 bool /* is_audio */, | 139 bool /* is_audio */, |
| 140 media::cast::MissingFramesAndPacketsMap /* missing_packets */, | 140 media::cast::MissingFramesAndPacketsMap /* missing_packets */, |
| 141 bool /* cancel_rtx_if_not_in_list */) | 141 bool /* cancel_rtx_if_not_in_list */, |
| 142 base::TimeDelta /* dedupe_window */) |
| 142 | 143 |
| 143 IPC_MESSAGE_CONTROL2( | 144 IPC_MESSAGE_CONTROL2( |
| 144 CastHostMsg_New, | 145 CastHostMsg_New, |
| 145 int32 /* channel_id */, | 146 int32 /* channel_id */, |
| 146 net::IPEndPoint /*remote_end_point*/); | 147 net::IPEndPoint /*remote_end_point*/); |
| 147 | 148 |
| 148 IPC_MESSAGE_CONTROL1( | 149 IPC_MESSAGE_CONTROL1( |
| 149 CastHostMsg_Delete, | 150 CastHostMsg_Delete, |
| 150 int32 /* channel_id */); | 151 int32 /* channel_id */); |
| OLD | NEW |