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

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

Issue 322953004: Cast: Don't cancel re-transmission for some cases (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months 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 | Annotate | Revision Log
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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 CastHostMsg_InsertCodedVideoFrame, 126 CastHostMsg_InsertCodedVideoFrame,
127 int32 /* channel_id */, 127 int32 /* channel_id */,
128 media::cast::transport::EncodedFrame /* video_frame */) 128 media::cast::transport::EncodedFrame /* video_frame */)
129 129
130 IPC_MESSAGE_CONTROL3( 130 IPC_MESSAGE_CONTROL3(
131 CastHostMsg_SendRtcpFromRtpSender, 131 CastHostMsg_SendRtcpFromRtpSender,
132 int32 /* channel_id */, 132 int32 /* channel_id */,
133 media::cast::transport::SendRtcpFromRtpSenderData /* data */, 133 media::cast::transport::SendRtcpFromRtpSenderData /* data */,
134 media::cast::transport::RtcpDlrrReportBlock /* dlrr */) 134 media::cast::transport::RtcpDlrrReportBlock /* dlrr */)
135 135
136 IPC_MESSAGE_CONTROL3( 136 IPC_MESSAGE_CONTROL4(
137 CastHostMsg_ResendPackets, 137 CastHostMsg_ResendPackets,
138 int32 /* channel_id */, 138 int32 /* channel_id */,
139 bool /* is_audio */, 139 bool /* is_audio */,
140 media::cast::MissingFramesAndPacketsMap /* missing_packets */) 140 media::cast::MissingFramesAndPacketsMap /* missing_packets */,
141 bool /* cancel_rtx_not_in_list */)
141 142
142 IPC_MESSAGE_CONTROL2( 143 IPC_MESSAGE_CONTROL2(
143 CastHostMsg_New, 144 CastHostMsg_New,
144 int32 /* channel_id */, 145 int32 /* channel_id */,
145 net::IPEndPoint /*remote_end_point*/); 146 net::IPEndPoint /*remote_end_point*/);
146 147
147 IPC_MESSAGE_CONTROL1( 148 IPC_MESSAGE_CONTROL1(
148 CastHostMsg_Delete, 149 CastHostMsg_Delete,
149 int32 /* channel_id */); 150 int32 /* channel_id */);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698