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

Unified Diff: content/renderer/media/media_stream_audio_processor_options.cc

Issue 867233002: UMA histogram: Corrects misspelled histogram name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_stream_audio_processor_options.cc
diff --git a/content/renderer/media/media_stream_audio_processor_options.cc b/content/renderer/media/media_stream_audio_processor_options.cc
index 0b8db59723a735e21bcb2be467d22000eb374f9a..5b530d146a9b042df48de4d9eeda5289efd9dd6e 100644
--- a/content/renderer/media/media_stream_audio_processor_options.cc
+++ b/content/renderer/media/media_stream_audio_processor_options.cc
@@ -253,7 +253,7 @@ void EchoInformation::LogAecDelayStats() {
if (echo_total_delay_counts_ > 0) {
poor_delay_frequency = static_cast<float>(echo_poor_delay_counts_) /
static_cast<float>(echo_total_delay_counts_);
- UMA_HISTOGRAM_ENUMERATION("Media.AecDelayBasedQuality",
+ UMA_HISTOGRAM_ENUMERATION("WebRTC.AecDelayBasedQuality",
EchoDelayFrequencyToQuality(poor_delay_frequency),
DELAY_BASED_ECHO_QUALITY_MAX);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698