| Index: media/audio/audio_output_resampler.cc
|
| diff --git a/media/audio/audio_output_resampler.cc b/media/audio/audio_output_resampler.cc
|
| index 4c4b601cc87642b2b835d58dd1dba9c188b4fbd1..7aa32848f32971632628e988530d82b719f46548 100644
|
| --- a/media/audio/audio_output_resampler.cc
|
| +++ b/media/audio/audio_output_resampler.cc
|
| @@ -27,12 +27,11 @@ class OnMoreDataConverter
|
| public:
|
| OnMoreDataConverter(const AudioParameters& input_params,
|
| const AudioParameters& output_params);
|
| - virtual ~OnMoreDataConverter();
|
| + ~OnMoreDataConverter() override;
|
|
|
| // AudioSourceCallback interface.
|
| - virtual int OnMoreData(AudioBus* dest,
|
| - uint32 total_bytes_delay) override;
|
| - virtual void OnError(AudioOutputStream* stream) override;
|
| + int OnMoreData(AudioBus* dest, uint32 total_bytes_delay) override;
|
| + void OnError(AudioOutputStream* stream) override;
|
|
|
| // Sets |source_callback_|. If this is not a new object, then Stop() must be
|
| // called before Start().
|
| @@ -45,8 +44,8 @@ class OnMoreDataConverter
|
|
|
| private:
|
| // AudioConverter::InputCallback implementation.
|
| - virtual double ProvideInput(AudioBus* audio_bus,
|
| - base::TimeDelta buffer_delay) override;
|
| + double ProvideInput(AudioBus* audio_bus,
|
| + base::TimeDelta buffer_delay) override;
|
|
|
| // Ratio of input bytes to output bytes used to correct playback delay with
|
| // regard to buffering and resampling.
|
|
|