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

Side by Side Diff: media/cast/net/rtcp/rtcp_defines.cc

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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 | « media/cast/net/rtcp/rtcp_defines.h ('k') | media/cast/net/rtcp/rtcp_receiver.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 #include "media/cast/rtcp/rtcp_defines.h" 5 #include "media/cast/net/rtcp/rtcp_defines.h"
6 6
7 #include "media/cast/logging/logging_defines.h" 7 #include "media/cast/logging/logging_defines.h"
8 8
9 namespace media { 9 namespace media {
10 namespace cast { 10 namespace cast {
11 11
12 RtcpCastMessage::RtcpCastMessage(uint32 media_ssrc) 12 RtcpCastMessage::RtcpCastMessage(uint32 media_ssrc)
13 : media_ssrc_(media_ssrc), ack_frame_id_(0u), target_delay_ms_(0) {} 13 : media_ssrc_(media_ssrc), ack_frame_id_(0u), target_delay_ms_(0) {}
14 RtcpCastMessage::~RtcpCastMessage() {} 14 RtcpCastMessage::~RtcpCastMessage() {}
15 15
(...skipping 24 matching lines...) Expand all
40 40
41 RtcpReceiverReferenceTimeReport::RtcpReceiverReferenceTimeReport() 41 RtcpReceiverReferenceTimeReport::RtcpReceiverReferenceTimeReport()
42 : remote_ssrc(0u), ntp_seconds(0u), ntp_fraction(0u) {} 42 : remote_ssrc(0u), ntp_seconds(0u), ntp_fraction(0u) {}
43 RtcpReceiverReferenceTimeReport::~RtcpReceiverReferenceTimeReport() {} 43 RtcpReceiverReferenceTimeReport::~RtcpReceiverReferenceTimeReport() {}
44 44
45 RtcpEvent::RtcpEvent() : type(UNKNOWN), packet_id(0u) {} 45 RtcpEvent::RtcpEvent() : type(UNKNOWN), packet_id(0u) {}
46 RtcpEvent::~RtcpEvent() {} 46 RtcpEvent::~RtcpEvent() {}
47 47
48 } // namespace cast 48 } // namespace cast
49 } // namespace media 49 } // namespace media
OLDNEW
« no previous file with comments | « media/cast/net/rtcp/rtcp_defines.h ('k') | media/cast/net/rtcp/rtcp_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698