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 dbfd0d56b3b0e5addcf6b390a409a6940640cecc..1e1065aca5e225a3d75ca4f006553ece32771cff 100644 |
--- a/content/browser/renderer_host/media/audio_renderer_host.cc |
+++ b/content/browser/renderer_host/media/audio_renderer_host.cc |
@@ -95,7 +95,9 @@ AudioRendererHost::AudioEntry::AudioEntry( |
stream_id_(stream_id), |
render_view_id_(render_view_id), |
controller_(media::AudioOutputController::Create( |
- host->audio_manager_, this, params, input_device_id, reader.get())), |
+ // TODO(tommi): Feed in the proper output device id. |
+ host->audio_manager_, this, params, std::string(), |
+ input_device_id, reader.get())), |
shared_memory_(shared_memory.Pass()), |
reader_(reader.Pass()) { |
DCHECK(controller_.get()); |