| Index: webrtc/test/mock_voice_engine.h
|
| diff --git a/webrtc/test/mock_voice_engine.h b/webrtc/test/mock_voice_engine.h
|
| index cdb6a783dadc656121b793ec8ea35509fed89901..d90e76d67e26221616dffd979c1f539c1a22b17c 100644
|
| --- a/webrtc/test/mock_voice_engine.h
|
| +++ b/webrtc/test/mock_voice_engine.h
|
| @@ -52,6 +52,12 @@ class MockVoiceEngine : public VoiceEngineImpl {
|
| new testing::NiceMock<webrtc::test::MockVoEChannelProxy>();
|
| EXPECT_CALL(*proxy, GetAudioDecoderFactory())
|
| .WillRepeatedly(testing::ReturnRef(decoder_factory_));
|
| + EXPECT_CALL(*proxy, SetReceiveCodecs(testing::_))
|
| + .WillRepeatedly(testing::Invoke(
|
| + [](const std::map<int, SdpAudioFormat>& codecs) {
|
| + EXPECT_THAT(codecs, testing::IsEmpty());
|
| + return true;
|
| + }));
|
| return proxy;
|
| }));
|
|
|
|
|