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

Unified Diff: webrtc/audio/audio_send_stream_unittest.cc

Issue 1909333002: Switch voice transport to use Call and Stream instead of VoENetwork. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed coments on ps#6 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
« no previous file with comments | « webrtc/audio/audio_send_stream.cc ('k') | webrtc/audio_receive_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/audio_send_stream_unittest.cc
diff --git a/webrtc/audio/audio_send_stream_unittest.cc b/webrtc/audio/audio_send_stream_unittest.cc
index c04a3de77c203e00aedeb67b34c0115f7fcdf68b..24efaada1038ac5903d12e5071e5a08f289a5960 100644
--- a/webrtc/audio/audio_send_stream_unittest.cc
+++ b/webrtc/audio/audio_send_stream_unittest.cc
@@ -89,6 +89,10 @@ struct ConfigHelper {
.Times(1);
EXPECT_CALL(*channel_proxy_, ResetCongestionControlObjects())
.Times(1);
+ EXPECT_CALL(*channel_proxy_, RegisterExternalTransport(nullptr))
+ .Times(1);
+ EXPECT_CALL(*channel_proxy_, DeRegisterExternalTransport())
+ .Times(1);
return channel_proxy_;
}));
stream_config_.voe_channel_id = kChannelId;
« no previous file with comments | « webrtc/audio/audio_send_stream.cc ('k') | webrtc/audio_receive_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698