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

Unified Diff: content/browser/renderer_host/media/audio_renderer_host.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
Index: content/browser/renderer_host/media/audio_renderer_host.h
diff --git a/content/browser/renderer_host/media/audio_renderer_host.h b/content/browser/renderer_host/media/audio_renderer_host.h
index 6709111f9ca2607364f43dc62f9dcf97a96ab99b..cfa6245cc8c282dc14432efc6ca2876c614e069e 100644
--- a/content/browser/renderer_host/media/audio_renderer_host.h
+++ b/content/browser/renderer_host/media/audio_renderer_host.h
@@ -108,19 +108,19 @@ class CONTENT_EXPORT AudioRendererHost
AudioRendererHost(const content::ResourceContext* resource_context);
// BrowserMessageFilter implementation.
- virtual void OnChannelClosing();
- virtual void OnDestruct() const;
+ virtual void OnChannelClosing() OVERRIDE;
+ virtual void OnDestruct() const OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message,
- bool* message_was_ok);
+ bool* message_was_ok) OVERRIDE;
// AudioOutputController::EventHandler implementations.
- virtual void OnCreated(media::AudioOutputController* controller);
- virtual void OnPlaying(media::AudioOutputController* controller);
- virtual void OnPaused(media::AudioOutputController* controller);
+ virtual void OnCreated(media::AudioOutputController* controller) OVERRIDE;
+ virtual void OnPlaying(media::AudioOutputController* controller) OVERRIDE;
+ virtual void OnPaused(media::AudioOutputController* controller) OVERRIDE;
virtual void OnError(media::AudioOutputController* controller,
- int error_code);
+ int error_code) OVERRIDE;
virtual void OnMoreData(media::AudioOutputController* controller,
- AudioBuffersState buffers_state);
+ AudioBuffersState buffers_state) OVERRIDE;
private:
friend class AudioRendererHostTest;
« no previous file with comments | « content/browser/renderer_host/media/audio_input_sync_writer.h ('k') | content/browser/renderer_host/media/audio_sync_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698