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

Unified Diff: content/browser/renderer_host/media/audio_renderer_host.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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
Index: content/browser/renderer_host/media/audio_renderer_host.cc
diff --git a/content/browser/renderer_host/media/audio_renderer_host.cc b/content/browser/renderer_host/media/audio_renderer_host.cc
index 5e3b88f365b2c2d33b8f2e91e8c6ba98a8318883..4611fed62796f9fd0d72a3a4ecfcf576a4d6a4f2 100644
--- a/content/browser/renderer_host/media/audio_renderer_host.cc
+++ b/content/browser/renderer_host/media/audio_renderer_host.cc
@@ -35,7 +35,7 @@ namespace content {
namespace {
-void UMALogDeviceAuthorizationTime(base::TimeTicks auth_start_time) {
+void UMALogAudioDeviceAuthorizationTime(base::TimeTicks auth_start_time) {
UMA_HISTOGRAM_CUSTOM_TIMES("Media.Audio.OutputDeviceAuthorizationTime",
base::TimeTicks::Now() - auth_start_time,
base::TimeDelta::FromMilliseconds(1),
@@ -201,7 +201,7 @@ void AudioRendererHost::AuthorizationCompleted(
const std::string& device_id_for_renderer) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
- UMALogDeviceAuthorizationTime(auth_start_time);
+ UMALogAudioDeviceAuthorizationTime(auth_start_time);
auto auth_data = authorizations_.find(stream_id);
if (auth_data == authorizations_.end())

Powered by Google App Engine
This is Rietveld 408576698