| 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())
|
|
|