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

Unified Diff: media/audio/win/audio_manager_win.cc

Issue 2929823002: Making AudioManagerBase::ShutdownOnAudioThread() platform-agnostic (Closed)
Patch Set: Created 3 years, 6 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
« media/audio/audio_manager_base.cc ('K') | « media/audio/win/audio_manager_win.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/win/audio_manager_win.cc
diff --git a/media/audio/win/audio_manager_win.cc b/media/audio/win/audio_manager_win.cc
index 6b96668c5d3a9d05dc9089a3f74935177c84309e..2947f8b437ae60e3da1ceff385079165b0042799 100644
--- a/media/audio/win/audio_manager_win.cc
+++ b/media/audio/win/audio_manager_win.cc
@@ -155,8 +155,8 @@ AudioManagerWin::AudioManagerWin(std::unique_ptr<AudioThread> audio_thread,
AudioManagerWin::~AudioManagerWin() = default;
-void AudioManagerWin::ShutdownOnAudioThread() {
- AudioManagerBase::ShutdownOnAudioThread();
+void AudioManagerWin::ShutdownOnAudioThread(bool immediately) {
+ AudioManagerBase::ShutdownOnAudioThread(immediately);
// Destroy AudioDeviceListenerWin instance on the audio thread because it
// expects to be constructed and destroyed on the same thread.
« media/audio/audio_manager_base.cc ('K') | « media/audio/win/audio_manager_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698