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

Unified Diff: media/audio/audio_output_proxy_unittest.cc

Issue 2507643002: Removes tracking for fake audio streams. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « media/audio/audio_manager_base.cc ('k') | media/audio/fake_audio_input_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_output_proxy_unittest.cc
diff --git a/media/audio/audio_output_proxy_unittest.cc b/media/audio/audio_output_proxy_unittest.cc
index a8754ee1fed48a80e5c5eb9e9603548e44fdf965..78c83bf7c89b5663665e612c40a73097b16dd61d 100644
--- a/media/audio/audio_output_proxy_unittest.cc
+++ b/media/audio/audio_output_proxy_unittest.cc
@@ -57,9 +57,10 @@ class MockAudioOutputStream : public AudioOutputStream {
: start_called_(false),
stop_called_(false),
params_(params),
- fake_output_stream_(
- FakeAudioOutputStream::MakeFakeStream(manager, params_)) {
- }
+ fake_output_stream_(FakeAudioOutputStream::MakeFakeStream(
+ manager->GetTaskRunner(),
+ manager->GetWorkerTaskRunner(),
+ params_)) {}
void Start(AudioSourceCallback* callback) {
start_called_ = true;
« no previous file with comments | « media/audio/audio_manager_base.cc ('k') | media/audio/fake_audio_input_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698