Index: webrtc/modules/audio_processing/include/mock_audio_processing.h |
diff --git a/webrtc/modules/audio_processing/include/mock_audio_processing.h b/webrtc/modules/audio_processing/include/mock_audio_processing.h |
index 480d0e34b2c686574ed7301b48be3530def35b5d..d0304db036615362fd4162f6ffc8be0050743dc4 100644 |
--- a/webrtc/modules/audio_processing/include/mock_audio_processing.h |
+++ b/webrtc/modules/audio_processing/include/mock_audio_processing.h |
@@ -221,8 +221,15 @@ class MockAudioProcessing : public AudioProcessing { |
MOCK_METHOD1(AnalyzeReverseStream, |
int(AudioFrame* frame)); |
MOCK_METHOD4(AnalyzeReverseStream, |
- int(const float* const* data, int frames, int sample_rate_hz, |
- ChannelLayout input_layout)); |
+ int(const float* const* data, |
+ int num_frames, |
+ int sample_rate_hz, |
+ ChannelLayout input_layout)); |
+ MOCK_METHOD4(ProcessReverseStream, |
+ int(float* const* data, |
+ int num_frames, |
+ int sample_rate_hz, |
+ ChannelLayout input_layout)); |
MOCK_METHOD1(set_stream_delay_ms, |
int(int delay)); |
MOCK_CONST_METHOD0(stream_delay_ms, |