| Index: content/renderer/media/audio_track_recorder_unittest.cc
|
| diff --git a/content/renderer/media/audio_track_recorder_unittest.cc b/content/renderer/media/audio_track_recorder_unittest.cc
|
| index 1966464038fc7e9010e538941f88d5611939fcec..f000ea1065de8d67acbc13a6831c2e2e9f2c4eb3 100644
|
| --- a/content/renderer/media/audio_track_recorder_unittest.cc
|
| +++ b/content/renderer/media/audio_track_recorder_unittest.cc
|
| @@ -128,7 +128,7 @@ class AudioTrackRecorderTest : public TestWithParam<ATRTestParams> {
|
| audio_track_recorder_->GetOpusBufferDuration(
|
| first_params_.sample_rate()) /
|
| 1000));
|
| - first_source_.OnMoreData(bus.get(), 0);
|
| + first_source_.OnMoreData(bus.get(), 0, 0);
|
| return bus.Pass();
|
| }
|
| scoped_ptr<media::AudioBus> GetSecondSourceAudioBus() {
|
| @@ -138,7 +138,7 @@ class AudioTrackRecorderTest : public TestWithParam<ATRTestParams> {
|
| audio_track_recorder_->GetOpusBufferDuration(
|
| second_params_.sample_rate()) /
|
| 1000));
|
| - second_source_.OnMoreData(bus.get(), 0);
|
| + second_source_.OnMoreData(bus.get(), 0, 0);
|
| return bus.Pass();
|
| }
|
|
|
|
|