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

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

Issue 2761273003: Switching MediaStreamsManager from using AudioManager interface to AudioSystem one. (Closed)
Patch Set: passing device descriptions by value Created 3 years, 9 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/media_stream_manager.cc
diff --git a/content/browser/renderer_host/media/media_stream_manager.cc b/content/browser/renderer_host/media/media_stream_manager.cc
index b0fb9dd13dfef6bb3757b1183893f26bbe41ee51..963c9c72379beaac843b35c259fc4b2fd629a66a 100644
--- a/content/browser/renderer_host/media/media_stream_manager.cc
+++ b/content/browser/renderer_host/media/media_stream_manager.cc
@@ -1271,8 +1271,8 @@ void MediaStreamManager::InitializeDeviceManagersOnIOThread() {
video_capture_manager_->RegisterListener(this);
- media_devices_manager_.reset(new MediaDevicesManager(
- audio_system_->GetAudioManager(), video_capture_manager_, this));
+ media_devices_manager_.reset(
+ new MediaDevicesManager(audio_system_, video_capture_manager_, this));
}
void MediaStreamManager::Opened(MediaStreamType stream_type,

Powered by Google App Engine
This is Rietveld 408576698