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

Unified Diff: webrtc/call/bitrate_estimator_tests.cc

Issue 2377023002: Now pass ADM as a constructor argument to audio_state. (Closed)
Patch Set: Removed audio_transport() mock calls in tests. Created 4 years, 3 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: webrtc/call/bitrate_estimator_tests.cc
diff --git a/webrtc/call/bitrate_estimator_tests.cc b/webrtc/call/bitrate_estimator_tests.cc
index 2896c67f37d0dad443f05918c68b0770b8f111e0..8f0ff68800574ac49aa7230cd6700b427e5a6846 100644
--- a/webrtc/call/bitrate_estimator_tests.cc
+++ b/webrtc/call/bitrate_estimator_tests.cc
@@ -111,7 +111,7 @@ class BitrateEstimatorTest : public test::CallTest {
AudioState::Config audio_state_config;
audio_state_config.voice_engine = &mock_voice_engine_;
Call::Config config;
- config.audio_state = AudioState::Create(audio_state_config);
+ config.audio_state = AudioState::Create(audio_state_config, nullptr);
receiver_call_.reset(Call::Create(config));
sender_call_.reset(Call::Create(config));

Powered by Google App Engine
This is Rietveld 408576698