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

Unified Diff: webrtc/test/mock_voe_channel_proxy.h

Issue 2774623006: Let PacketRouter separate send and receive modules. (Closed)
Patch Set: Update comment, test, and change one std::list to std::vector. 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/test/mock_voe_channel_proxy.h
diff --git a/webrtc/test/mock_voe_channel_proxy.h b/webrtc/test/mock_voe_channel_proxy.h
index 4a84d33da0f51d89dc9369cb48263a27a88c364a..b62c266ff696177aceadac0c64b34f071f2345a2 100644
--- a/webrtc/test/mock_voe_channel_proxy.h
+++ b/webrtc/test/mock_voe_channel_proxy.h
@@ -35,7 +35,8 @@ class MockVoEChannelProxy : public voe::ChannelProxy {
RtcpBandwidthObserver* bandwidth_observer));
MOCK_METHOD1(RegisterReceiverCongestionControlObjects,
void(PacketRouter* packet_router));
- MOCK_METHOD0(ResetCongestionControlObjects, void());
+ MOCK_METHOD0(ResetSenderCongestionControlObjects, void());
+ MOCK_METHOD0(ResetReceiverCongestionControlObjects, void());
MOCK_CONST_METHOD0(GetRTCPStatistics, CallStatistics());
MOCK_CONST_METHOD0(GetRemoteRTCPReportBlocks, std::vector<ReportBlock>());
MOCK_CONST_METHOD0(GetNetworkStatistics, NetworkStatistics());

Powered by Google App Engine
This is Rietveld 408576698