| Index: webrtc/modules/audio_coding/neteq/mock/mock_expand.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/mock/mock_expand.h b/webrtc/modules/audio_coding/neteq/mock/mock_expand.h
|
| index 45e3239f612d4fa8ccdaf045d533c2e402878b6d..f5ca077531e3b43c25e3f5b95226811d80aad050 100644
|
| --- a/webrtc/modules/audio_coding/neteq/mock/mock_expand.h
|
| +++ b/webrtc/modules/audio_coding/neteq/mock/mock_expand.h
|
| @@ -22,10 +22,15 @@ class MockExpand : public Expand {
|
| MockExpand(BackgroundNoise* background_noise,
|
| SyncBuffer* sync_buffer,
|
| RandomVector* random_vector,
|
| + StatisticsCalculator* statistics,
|
| int fs,
|
| size_t num_channels)
|
| - : Expand(background_noise, sync_buffer, random_vector, fs, num_channels) {
|
| - }
|
| + : Expand(background_noise,
|
| + sync_buffer,
|
| + random_vector,
|
| + statistics,
|
| + fs,
|
| + num_channels) {}
|
| virtual ~MockExpand() { Die(); }
|
| MOCK_METHOD0(Die, void());
|
| MOCK_METHOD0(Reset,
|
| @@ -46,10 +51,11 @@ namespace webrtc {
|
|
|
| class MockExpandFactory : public ExpandFactory {
|
| public:
|
| - MOCK_CONST_METHOD5(Create,
|
| + MOCK_CONST_METHOD6(Create,
|
| Expand*(BackgroundNoise* background_noise,
|
| SyncBuffer* sync_buffer,
|
| RandomVector* random_vector,
|
| + StatisticsCalculator* statistics,
|
| int fs,
|
| size_t num_channels));
|
| };
|
|
|