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 <string> | |
Alpha Left Google
2014/09/09 20:15:12
Is this still needed?
hubbe
2014/09/09 20:45:14
no
| |
9 | |
8 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
9 #include "media/cast/cast_sender.h" | 11 #include "media/cast/cast_sender.h" |
10 #include "media/cast/logging/logging_defines.h" | 12 #include "media/cast/logging/logging_defines.h" |
11 #include "media/cast/net/cast_transport_sender.h" | 13 #include "media/cast/net/cast_transport_sender.h" |
12 #include "media/cast/net/rtcp/rtcp_defines.h" | 14 #include "media/cast/net/rtcp/rtcp_defines.h" |
13 #include "net/base/ip_endpoint.h" | 15 #include "net/base/ip_endpoint.h" |
14 | 16 |
15 #undef IPC_MESSAGE_EXPORT | 17 #undef IPC_MESSAGE_EXPORT |
16 #define IPC_MESSAGE_EXPORT | 18 #define IPC_MESSAGE_EXPORT |
17 #define IPC_MESSAGE_START CastMsgStart | 19 #define IPC_MESSAGE_START CastMsgStart |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 int32 /* channel_id */, | 136 int32 /* channel_id */, |
135 uint32 /* ssrc */, | 137 uint32 /* ssrc */, |
136 std::vector<uint32> /* frame_ids */) | 138 std::vector<uint32> /* frame_ids */) |
137 | 139 |
138 IPC_MESSAGE_CONTROL3( | 140 IPC_MESSAGE_CONTROL3( |
139 CastHostMsg_ResendFrameForKickstart, | 141 CastHostMsg_ResendFrameForKickstart, |
140 int32 /* channel_id */, | 142 int32 /* channel_id */, |
141 uint32 /* ssrc */, | 143 uint32 /* ssrc */, |
142 uint32 /* frame_id */) | 144 uint32 /* frame_id */) |
143 | 145 |
144 IPC_MESSAGE_CONTROL2( | 146 IPC_MESSAGE_CONTROL3( |
145 CastHostMsg_New, | 147 CastHostMsg_New, |
146 int32 /* channel_id */, | 148 int32 /* channel_id */, |
147 net::IPEndPoint /*remote_end_point*/) | 149 net::IPEndPoint /* remote_end_point */, |
150 base::DictionaryValue /* options */) | |
148 | 151 |
149 IPC_MESSAGE_CONTROL1( | 152 IPC_MESSAGE_CONTROL1( |
150 CastHostMsg_Delete, | 153 CastHostMsg_Delete, |
151 int32 /* channel_id */) | 154 int32 /* channel_id */) |
OLD | NEW |