| Index: webrtc/video/send_delay_stats.cc
|
| diff --git a/webrtc/video/send_delay_stats.cc b/webrtc/video/send_delay_stats.cc
|
| index 0f73e1f888217c1f3c0c040b89f373939989d7f6..8ae0615c597a6205f81600d4d2150fe9f73a8ec2 100644
|
| --- a/webrtc/video/send_delay_stats.cc
|
| +++ b/webrtc/video/send_delay_stats.cc
|
| @@ -44,8 +44,7 @@ void SendDelayStats::UpdateHistograms() {
|
| for (const auto& it : send_delay_counters_) {
|
| AggregatedStats stats = it.second->GetStats();
|
| if (stats.num_samples >= kMinRequiredPeriodicSamples) {
|
| - RTC_LOGGED_HISTOGRAM_COUNTS_10000("WebRTC.Video.SendDelayInMs",
|
| - stats.average);
|
| + RTC_HISTOGRAM_COUNTS_10000("WebRTC.Video.SendDelayInMs", stats.average);
|
| }
|
| }
|
| }
|
|
|