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

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

Issue 1731403002: media: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « media/cast/logging/logging_defines.cc ('k') | media/cast/net/rtcp/rtcp_defines.cc » ('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 #ifndef MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ 5 #ifndef MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_
6 #define MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ 6 #define MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 CastLoggingEvent type; 62 CastLoggingEvent type;
63 base::TimeTicks event_timestamp; 63 base::TimeTicks event_timestamp;
64 base::TimeDelta delay_delta; 64 base::TimeDelta delay_delta;
65 uint16_t packet_id; 65 uint16_t packet_id;
66 }; 66 };
67 67
68 typedef std::list<RtcpReceiverEventLogMessage> RtcpReceiverEventLogMessages; 68 typedef std::list<RtcpReceiverEventLogMessage> RtcpReceiverEventLogMessages;
69 69
70 struct RtcpReceiverFrameLogMessage { 70 struct RtcpReceiverFrameLogMessage {
71 explicit RtcpReceiverFrameLogMessage(RtpTimeTicks rtp_timestamp); 71 explicit RtcpReceiverFrameLogMessage(RtpTimeTicks rtp_timestamp);
72 RtcpReceiverFrameLogMessage(const RtcpReceiverFrameLogMessage& other);
72 ~RtcpReceiverFrameLogMessage(); 73 ~RtcpReceiverFrameLogMessage();
73 74
74 const RtpTimeTicks rtp_timestamp_; 75 const RtpTimeTicks rtp_timestamp_;
75 RtcpReceiverEventLogMessages event_log_messages_; 76 RtcpReceiverEventLogMessages event_log_messages_;
76 }; 77 };
77 78
78 typedef std::list<RtcpReceiverFrameLogMessage> RtcpReceiverLogMessage; 79 typedef std::list<RtcpReceiverFrameLogMessage> RtcpReceiverLogMessage;
79 80
80 struct RtcpReceiverReferenceTimeReport { 81 struct RtcpReceiverReferenceTimeReport {
81 RtcpReceiverReferenceTimeReport(); 82 RtcpReceiverReferenceTimeReport();
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 base::TimeDelta target_delay; 146 base::TimeDelta target_delay;
146 scoped_ptr<std::vector<std::pair<RtpTimeTicks, RtcpEvent>>> rtcp_events; 147 scoped_ptr<std::vector<std::pair<RtpTimeTicks, RtcpEvent>>> rtcp_events;
147 scoped_ptr<RtpReceiverStatistics> rtp_receiver_statistics; 148 scoped_ptr<RtpReceiverStatistics> rtp_receiver_statistics;
148 }; 149 };
149 150
150 151
151 } // namespace cast 152 } // namespace cast
152 } // namespace media 153 } // namespace media
153 154
154 #endif // MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_ 155 #endif // MEDIA_CAST_NET_RTCP_RTCP_DEFINES_H_
OLDNEW
« no previous file with comments | « media/cast/logging/logging_defines.cc ('k') | media/cast/net/rtcp/rtcp_defines.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698