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 49e395bd0edd694d600d280b7a72eb9568c1c043..d469d3424332a05f895eabe9299278d244c0fbea 100644 |
--- a/content/browser/renderer_host/media/audio_renderer_host.cc |
+++ b/content/browser/renderer_host/media/audio_renderer_host.cc |
@@ -840,9 +840,9 @@ void AudioRendererHost::TranslateDeviceID( |
const std::string& device_id, |
const GURL& security_origin, |
const OutputDeviceInfoCB& callback, |
- const AudioOutputDeviceEnumeration& device_infos) { |
+ const AudioOutputDeviceEnumeration& enumeration) { |
DCHECK_CURRENTLY_ON(BrowserThread::IO); |
- for (const AudioOutputDeviceInfo& device_info : device_infos) { |
+ for (const AudioOutputDeviceInfo& device_info : enumeration.devices) { |
if (device_id.empty()) { |
if (device_info.unique_id == media::AudioManagerBase::kDefaultDeviceId) { |
callback.Run(true, device_info); |