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

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

Issue 427733002: Cast: Remove unused RTCP messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merged Created 6 years, 4 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
« no previous file with comments | « no previous file | media/cast/cast_config.h » ('j') | 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 27 matching lines...) Expand all
38 IPC_STRUCT_TRAITS_END() 38 IPC_STRUCT_TRAITS_END()
39 39
40 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) 40 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock)
41 IPC_STRUCT_TRAITS_MEMBER(last_rr) 41 IPC_STRUCT_TRAITS_MEMBER(last_rr)
42 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) 42 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr)
43 IPC_STRUCT_TRAITS_END() 43 IPC_STRUCT_TRAITS_END()
44 44
45 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) 45 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig)
46 IPC_STRUCT_TRAITS_MEMBER(ssrc) 46 IPC_STRUCT_TRAITS_MEMBER(ssrc)
47 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc) 47 IPC_STRUCT_TRAITS_MEMBER(feedback_ssrc)
48 IPC_STRUCT_TRAITS_MEMBER(c_name)
49 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type) 48 IPC_STRUCT_TRAITS_MEMBER(rtp_payload_type)
50 IPC_STRUCT_TRAITS_MEMBER(stored_frames) 49 IPC_STRUCT_TRAITS_MEMBER(stored_frames)
51 IPC_STRUCT_TRAITS_MEMBER(aes_key) 50 IPC_STRUCT_TRAITS_MEMBER(aes_key)
52 IPC_STRUCT_TRAITS_MEMBER(aes_iv_mask) 51 IPC_STRUCT_TRAITS_MEMBER(aes_iv_mask)
53 IPC_STRUCT_TRAITS_END() 52 IPC_STRUCT_TRAITS_END()
54 53
55 IPC_STRUCT_TRAITS_BEGIN(media::cast::PacketEvent) 54 IPC_STRUCT_TRAITS_BEGIN(media::cast::PacketEvent)
56 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp) 55 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp)
57 IPC_STRUCT_TRAITS_MEMBER(frame_id) 56 IPC_STRUCT_TRAITS_MEMBER(frame_id)
58 IPC_STRUCT_TRAITS_MEMBER(max_packet_id) 57 IPC_STRUCT_TRAITS_MEMBER(max_packet_id)
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 base::TimeDelta /* dedupe_window */) 148 base::TimeDelta /* dedupe_window */)
150 149
151 IPC_MESSAGE_CONTROL2( 150 IPC_MESSAGE_CONTROL2(
152 CastHostMsg_New, 151 CastHostMsg_New,
153 int32 /* channel_id */, 152 int32 /* channel_id */,
154 net::IPEndPoint /*remote_end_point*/) 153 net::IPEndPoint /*remote_end_point*/)
155 154
156 IPC_MESSAGE_CONTROL1( 155 IPC_MESSAGE_CONTROL1(
157 CastHostMsg_Delete, 156 CastHostMsg_Delete,
158 int32 /* channel_id */) 157 int32 /* channel_id */)
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698