| Index: media/filters/null_audio_renderer.h
|
| diff --git a/media/filters/null_audio_renderer.h b/media/filters/null_audio_renderer.h
|
| index 2f9d06291a7e4b2b51d41d7e22c9e24dff98bfd3..9f4ed946d1b7c11276cb0a9ba4e1941a0b30b04f 100644
|
| --- a/media/filters/null_audio_renderer.h
|
| +++ b/media/filters/null_audio_renderer.h
|
| @@ -31,17 +31,17 @@ class MEDIA_EXPORT NullAudioRenderer
|
| virtual ~NullAudioRenderer();
|
|
|
| // AudioRenderer implementation.
|
| - virtual void SetVolume(float volume);
|
| + virtual void SetVolume(float volume) OVERRIDE;
|
|
|
| // PlatformThread::Delegate implementation.
|
| - virtual void ThreadMain();
|
| + virtual void ThreadMain() OVERRIDE;
|
|
|
| protected:
|
| // AudioRendererBase implementation.
|
| virtual bool OnInitialize(int bits_per_channel,
|
| ChannelLayout channel_layout,
|
| - int sample_rate);
|
| - virtual void OnStop();
|
| + int sample_rate) OVERRIDE;
|
| + virtual void OnStop() OVERRIDE;
|
|
|
| private:
|
| // A number to convert bytes written in FillBuffer to milliseconds based on
|
|
|