Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1494)

Side by Side Diff: chrome/common/cast_messages.h

Issue 807533002: fix spurious semicolons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cast_streaming_receiver4
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 */)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698