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

Unified Diff: content/browser/browser_main_loop.cc

Issue 1908423006: Allow content embedders to create AudioManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/browser_main_loop.cc
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
index 7443ebc13750b47e5970d95d0f2bbc3fbbc381c3..34dbd9123c939098e936778eea898349c1e1586f 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -1487,31 +1487,38 @@ void BrowserMainLoop::EndStartupTracing() {
void BrowserMainLoop::CreateAudioManager() {
DCHECK(!audio_thread_);
DCHECK(!audio_manager_);
- // TODO(alokp): Allow content embedders to override the default
- // task runners by defining ContentBrowserClient::GetAudioTaskRunner.
- scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner;
- scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner;
- scoped_refptr<base::SingleThreadTaskRunner> monitor_task_runner;
- audio_thread_.reset(new base::Thread("AudioThread"));
+
+ bool use_hang_monitor = true;
+ audio_manager_.reset(GetContentClient()->browser()->CreateAudioManager(
+ MediaInternals::GetInstance()));
+ if (!audio_manager_) {
+ audio_thread_.reset(new base::Thread("AudioThread"));
#if defined(OS_WIN)
- audio_thread_->init_com_with_mta(true);
+ audio_thread_->init_com_with_mta(true);
#endif // defined(OS_WIN)
- CHECK(audio_thread_->Start());
+ CHECK(audio_thread_->Start());
#if defined(OS_MACOSX)
- // On Mac audio task runner must belong to the main thread.
- // See http://crbug.com/158170.
- // Since the audio thread is the UI thread, a hang monitor is not
- // necessary or recommended.
- audio_task_runner = base::ThreadTaskRunnerHandle::Get();
- worker_task_runner = audio_thread_->task_runner();
+ // On Mac audio task runner must belong to the main thread.
+ // See http://crbug.com/158170.
+ // Since the audio thread is the UI thread, a hang monitor is not
+ // necessary or recommended.
+ use_hang_monitor = false;
+ scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner =
+ base::ThreadTaskRunnerHandle::Get();
#else
- audio_task_runner = audio_thread_->task_runner();
- worker_task_runner = audio_thread_->task_runner();
- monitor_task_runner = io_thread_->task_runner();
+ scoped_refptr<base::SingleThreadTaskRunner> audio_task_runner =
+ audio_thread_->task_runner();
#endif // defined(OS_MACOSX)
- audio_manager_ = media::AudioManager::Create(
- std::move(audio_task_runner), std::move(worker_task_runner),
- std::move(monitor_task_runner), MediaInternals::GetInstance());
+ scoped_refptr<base::SingleThreadTaskRunner> worker_task_runner =
+ audio_thread_->task_runner();
+ audio_manager_ = media::AudioManager::Create(std::move(audio_task_runner),
+ std::move(worker_task_runner),
+ MediaInternals::GetInstance());
+ }
+ CHECK(audio_manager_);
+
+ if (use_hang_monitor)
DaleCurtis 2016/04/22 23:45:06 This is disabled right now since we have enough cr
alokp 2016/04/22 23:54:21 On windows only or linux also? Are you referring t
+ media::AudioManager::StartHangMonitor(io_thread_->task_runner());
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698