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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 int32 /* channel_id */, | 132 int32 /* channel_id */, |
133 media::cast::EncodedFrame /* video_frame */) | 133 media::cast::EncodedFrame /* video_frame */) |
134 | 134 |
135 IPC_MESSAGE_CONTROL4( | 135 IPC_MESSAGE_CONTROL4( |
136 CastHostMsg_SendSenderReport, | 136 CastHostMsg_SendSenderReport, |
137 int32 /* channel_id */, | 137 int32 /* channel_id */, |
138 uint32 /* ssrc */, | 138 uint32 /* ssrc */, |
139 base::TimeTicks /* current_time */, | 139 base::TimeTicks /* current_time */, |
140 uint32 /* current_time_as_rtp_timestamp */) | 140 uint32 /* current_time_as_rtp_timestamp */) |
141 | 141 |
142 IPC_MESSAGE_CONTROL5( | 142 IPC_MESSAGE_CONTROL3( |
143 CastHostMsg_ResendPackets, | 143 CastHostMsg_CancelSendingFrames, |
144 int32 /* channel_id */, | 144 int32 /* channel_id */, |
145 bool /* is_audio */, | 145 uint32 /* ssrc */, |
146 media::cast::MissingFramesAndPacketsMap /* missing_packets */, | 146 std::vector<uint32> /* frame_ids */) |
147 bool /* cancel_rtx_if_not_in_list */, | 147 |
148 base::TimeDelta /* dedupe_window */) | 148 IPC_MESSAGE_CONTROL3( |
| 149 CastHostMsg_ResendFrameForKickstart, |
| 150 int32 /* channel_id */, |
| 151 uint32 /* ssrc */, |
| 152 uint32 /* frame_id */) |
149 | 153 |
150 IPC_MESSAGE_CONTROL2( | 154 IPC_MESSAGE_CONTROL2( |
151 CastHostMsg_New, | 155 CastHostMsg_New, |
152 int32 /* channel_id */, | 156 int32 /* channel_id */, |
153 net::IPEndPoint /*remote_end_point*/) | 157 net::IPEndPoint /*remote_end_point*/) |
154 | 158 |
155 IPC_MESSAGE_CONTROL1( | 159 IPC_MESSAGE_CONTROL1( |
156 CastHostMsg_Delete, | 160 CastHostMsg_Delete, |
157 int32 /* channel_id */) | 161 int32 /* channel_id */) |
OLD | NEW |