| Index: webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc
|
| diff --git a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc
|
| index 001937a2176ec65aa646244a533bef2459c04e23..872579bac3df25481be4a9137a5f48ed82ba1331 100644
|
| --- a/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc
|
| +++ b/webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.cc
|
| @@ -155,8 +155,8 @@ void SendSideBandwidthEstimation::UpdateUmaStats(int64_t now_ms,
|
| for (size_t i = 0; i < kNumUmaRampupMetrics; ++i) {
|
| if (!rampup_uma_stats_updated_[i] &&
|
| bitrate_kbps >= kUmaRampupMetrics[i].bitrate_kbps) {
|
| - RTC_HISTOGRAM_COUNTS_SPARSE_100000(kUmaRampupMetrics[i].metric_name,
|
| - now_ms - first_report_time_ms_);
|
| + RTC_HISTOGRAMS_COUNTS_100000(i, kUmaRampupMetrics[i].metric_name,
|
| + now_ms - first_report_time_ms_);
|
| rampup_uma_stats_updated_[i] = true;
|
| }
|
| }
|
|
|