| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 int32 /* channel_id */, | 134 int32 /* channel_id */, |
| 135 uint32 /* ssrc */, | 135 uint32 /* ssrc */, |
| 136 std::vector<uint32> /* frame_ids */) | 136 std::vector<uint32> /* frame_ids */) |
| 137 | 137 |
| 138 IPC_MESSAGE_CONTROL3( | 138 IPC_MESSAGE_CONTROL3( |
| 139 CastHostMsg_ResendFrameForKickstart, | 139 CastHostMsg_ResendFrameForKickstart, |
| 140 int32 /* channel_id */, | 140 int32 /* channel_id */, |
| 141 uint32 /* ssrc */, | 141 uint32 /* ssrc */, |
| 142 uint32 /* frame_id */) | 142 uint32 /* frame_id */) |
| 143 | 143 |
| 144 IPC_MESSAGE_CONTROL2( | 144 IPC_MESSAGE_CONTROL3( |
| 145 CastHostMsg_New, | 145 CastHostMsg_New, |
| 146 int32 /* channel_id */, | 146 int32 /* channel_id */, |
| 147 net::IPEndPoint /*remote_end_point*/) | 147 net::IPEndPoint /* remote_end_point */, |
| 148 base::DictionaryValue /* options */) |
| 148 | 149 |
| 149 IPC_MESSAGE_CONTROL1( | 150 IPC_MESSAGE_CONTROL1( |
| 150 CastHostMsg_Delete, | 151 CastHostMsg_Delete, |
| 151 int32 /* channel_id */) | 152 int32 /* channel_id */) |
| OLD | NEW |