| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 IPC_MESSAGE_CONTROL3( | 172 IPC_MESSAGE_CONTROL3( |
| 173 CastHostMsg_ResendFrameForKickstart, | 173 CastHostMsg_ResendFrameForKickstart, |
| 174 int32 /* channel_id */, | 174 int32 /* channel_id */, |
| 175 uint32 /* ssrc */, | 175 uint32 /* ssrc */, |
| 176 uint32 /* frame_id */) | 176 uint32 /* frame_id */) |
| 177 | 177 |
| 178 IPC_MESSAGE_CONTROL2( | 178 IPC_MESSAGE_CONTROL2( |
| 179 CastHostMsg_AddValidSsrc, | 179 CastHostMsg_AddValidSsrc, |
| 180 int32 /* channel id */, | 180 int32 /* channel id */, |
| 181 uint32 /* ssrc */); | 181 uint32 /* ssrc */) |
| 182 | 182 |
| 183 IPC_MESSAGE_CONTROL2( | 183 IPC_MESSAGE_CONTROL2( |
| 184 CastHostMsg_SendRtcpFromRtpReceiver, | 184 CastHostMsg_SendRtcpFromRtpReceiver, |
| 185 int32 /* channel id */, | 185 int32 /* channel id */, |
| 186 media::cast::SendRtcpFromRtpReceiver_Params /* data */); | 186 media::cast::SendRtcpFromRtpReceiver_Params /* data */) |
| 187 | 187 |
| 188 IPC_MESSAGE_CONTROL4( | 188 IPC_MESSAGE_CONTROL4( |
| 189 CastHostMsg_New, | 189 CastHostMsg_New, |
| 190 int32 /* channel_id */, | 190 int32 /* channel_id */, |
| 191 net::IPEndPoint /* local_end_point */, | 191 net::IPEndPoint /* local_end_point */, |
| 192 net::IPEndPoint /* remote_end_point */, | 192 net::IPEndPoint /* remote_end_point */, |
| 193 base::DictionaryValue /* options */) | 193 base::DictionaryValue /* options */) |
| 194 | 194 |
| 195 IPC_MESSAGE_CONTROL1( | 195 IPC_MESSAGE_CONTROL1( |
| 196 CastHostMsg_Delete, | 196 CastHostMsg_Delete, |
| 197 int32 /* channel_id */) | 197 int32 /* channel_id */) |
| OLD | NEW |