Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Unified Diff: media/filters/null_audio_renderer.h

Issue 8520033: Add OVERRIDE to media/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/filters/in_memory_url_protocol.h ('k') | media/filters/null_video_renderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « media/filters/in_memory_url_protocol.h ('k') | media/filters/null_video_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698