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

Unified Diff: webrtc/audio/audio_send_stream_unittest.cc

Issue 2774623006: Let PacketRouter separate send and receive modules. (Closed)
Patch Set: Send feedback messages on a send module, if possible. Created 3 years, 9 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/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 74a18bc4bdd4c1f41a06a9d9cd8a5d7f37d0a2f5..b6e9ae92dec3315eab73c86905d3f0192f6b38db 100644
--- a/webrtc/audio/audio_send_stream_unittest.cc
+++ b/webrtc/audio/audio_send_stream_unittest.cc
@@ -156,7 +156,8 @@ struct ConfigHelper {
packet_router(), Eq(nullptr)))
.Times(1);
}
- EXPECT_CALL(*channel_proxy_, ResetCongestionControlObjects()).Times(1);
+ EXPECT_CALL(*channel_proxy_, ResetSenderCongestionControlObjects())
+ .Times(1);
EXPECT_CALL(*channel_proxy_, RegisterExternalTransport(nullptr)).Times(1);
EXPECT_CALL(*channel_proxy_, DeRegisterExternalTransport()).Times(1);
EXPECT_CALL(*channel_proxy_, SetRtcEventLog(testing::NotNull())).Times(1);

Powered by Google App Engine
This is Rietveld 408576698