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

Side by Side Diff: media/cast/logging/logging_defines.cc

Issue 130423007: Cast:Updating logging stats (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/logging/logging_defines.h" 5 #include "media/cast/logging/logging_defines.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace media { 9 namespace media {
10 namespace cast { 10 namespace cast {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 PacketEvent::PacketEvent() {} 97 PacketEvent::PacketEvent() {}
98 PacketEvent::~PacketEvent() {} 98 PacketEvent::~PacketEvent() {}
99 99
100 GenericEvent::GenericEvent() {} 100 GenericEvent::GenericEvent() {}
101 GenericEvent::~GenericEvent() {} 101 GenericEvent::~GenericEvent() {}
102 102
103 ReceiverRtcpEvent::ReceiverRtcpEvent() {} 103 ReceiverRtcpEvent::ReceiverRtcpEvent() {}
104 ReceiverRtcpEvent::~ReceiverRtcpEvent() {} 104 ReceiverRtcpEvent::~ReceiverRtcpEvent() {}
105 105
106 FrameLogStats::FrameLogStats() 106 FrameLogStats::FrameLogStats()
107 : framerate_fps(0), 107 : event_counter(0),
108 bitrate_kbps(0), 108 size_sum(0) {}
109 max_delay_ms(0),
110 min_delay_ms(0),
111 avg_delay_ms(0) {}
112 FrameLogStats::~FrameLogStats() {} 109 FrameLogStats::~FrameLogStats() {}
113 110
111 PacketLogStats::PacketLogStats()
112 : event_counter(0),
113 size_sum(0) {}
114
115 PacketLogStats::~PacketLogStats() {}
116
117 GenericLogStats::GenericLogStats()
118 : event_counter(0),
119 sum(0),
120 min(0),
121 max(0) {}
122
123 GenericLogStats::~GenericLogStats() {}
114 } // namespace cast 124 } // namespace cast
115 } // namespace media 125 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698