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

Side by Side Diff: webrtc/modules/congestion_controller/delay_based_bwe.h

Issue 2206583002: Add UMA for tracking which BWE versions are in use. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: . Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/congestion_controller/delay_based_bwe.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 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 Clock* const clock_; 126 Clock* const clock_;
127 RemoteBitrateObserver* const observer_; 127 RemoteBitrateObserver* const observer_;
128 std::unique_ptr<InterArrival> inter_arrival_; 128 std::unique_ptr<InterArrival> inter_arrival_;
129 std::unique_ptr<OveruseEstimator> estimator_; 129 std::unique_ptr<OveruseEstimator> estimator_;
130 OveruseDetector detector_; 130 OveruseDetector detector_;
131 RateStatistics incoming_bitrate_; 131 RateStatistics incoming_bitrate_;
132 std::list<Probe> probes_; 132 std::list<Probe> probes_;
133 size_t total_probes_received_; 133 size_t total_probes_received_;
134 int64_t first_packet_time_ms_; 134 int64_t first_packet_time_ms_;
135 int64_t last_update_ms_; 135 int64_t last_update_ms_;
136 bool uma_recorded_;
136 137
137 rtc::CriticalSection crit_; 138 rtc::CriticalSection crit_;
138 Ssrcs ssrcs_ GUARDED_BY(&crit_); 139 Ssrcs ssrcs_ GUARDED_BY(&crit_);
139 AimdRateControl remote_rate_ GUARDED_BY(&crit_); 140 AimdRateControl remote_rate_ GUARDED_BY(&crit_);
140 141
141 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe); 142 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(DelayBasedBwe);
142 }; 143 };
143 144
144 } // namespace webrtc 145 } // namespace webrtc
145 146
146 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_ 147 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_DELAY_BASED_BWE_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/congestion_controller/delay_based_bwe.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698