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

Unified Diff: content/browser/renderer_host/media/audio_input_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_input_renderer_host.h
diff --git a/content/browser/renderer_host/media/audio_input_renderer_host.h b/content/browser/renderer_host/media/audio_input_renderer_host.h
index 8daa31fcd6d04c216f1f2848529105a8cb1695ea..b03556ef4ad9d186f079b092539ac3bef3c11346 100644
--- a/content/browser/renderer_host/media/audio_input_renderer_host.h
+++ b/content/browser/renderer_host/media/audio_input_renderer_host.h
@@ -107,23 +107,23 @@ class CONTENT_EXPORT AudioInputRendererHost
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;
// AudioInputController::EventHandler implementation.
- virtual void OnCreated(media::AudioInputController* controller);
- virtual void OnRecording(media::AudioInputController* controller);
+ virtual void OnCreated(media::AudioInputController* controller) OVERRIDE;
+ virtual void OnRecording(media::AudioInputController* controller) OVERRIDE;
virtual void OnError(media::AudioInputController* controller,
- int error_code);
+ int error_code) OVERRIDE;
virtual void OnData(media::AudioInputController* controller,
const uint8* data,
- uint32 size);
+ uint32 size) OVERRIDE;
// media_stream::AudioInputDeviceManagerEventHandler implementation.
- virtual void OnDeviceStarted(int session_id, int index);
- virtual void OnDeviceStopped(int session_id);
+ virtual void OnDeviceStarted(int session_id, int index) OVERRIDE;
+ virtual void OnDeviceStopped(int session_id) OVERRIDE;
private:
// TODO(henrika): extend test suite (compare AudioRenderHost)

Powered by Google App Engine
This is Rietveld 408576698