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

Unified Diff: webrtc/test/mock_voe_channel_proxy.h

Issue 2397573006: Using AudioOption to enable audio network adaptor. (Closed)
Patch Set: on comments Created 4 years, 2 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 1847cf47118862b378ca777a947de63bfb693796..28664132f9e119bf73547b65c1bea4a1f200f768 100644
--- a/webrtc/test/mock_voe_channel_proxy.h
+++ b/webrtc/test/mock_voe_channel_proxy.h
@@ -60,6 +60,11 @@ class MockVoEChannelProxy : public voe::ChannelProxy {
MOCK_METHOD1(SetChannelOutputVolumeScaling, void(float scaling));
MOCK_METHOD1(SetRtcEventLog, void(RtcEventLog* event_log));
MOCK_METHOD1(SetBitrate, void(int bitrate_bps));
+ MOCK_METHOD1(EnableAudioNetworkAdaptor,
+ bool(const std::string& config_string));
+ MOCK_METHOD0(DisableAudioNetworkAdaptor, void());
+ MOCK_METHOD2(SetReceiverFrameLengthRange,
+ void(int min_frame_length_ms, int max_frame_length_ms));
};
} // namespace test
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698