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

Unified Diff: content/browser/renderer_host/media/media_stream_dispatcher_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/media_stream_dispatcher_host.h
diff --git a/content/browser/renderer_host/media/media_stream_dispatcher_host.h b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
index cc315ed27788b7d63e93c11bc3da1b610d214544..b57ea588de9a925a9774f5dafee32ec088c32dda 100644
--- a/content/browser/renderer_host/media/media_stream_dispatcher_host.h
+++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
@@ -33,18 +33,19 @@ class CONTENT_EXPORT MediaStreamDispatcherHost
virtual ~MediaStreamDispatcherHost();
// MediaStreamRequester implementation.
- virtual void StreamGenerated(const std::string& label,
- const StreamDeviceInfoArray& audio_devices,
- const StreamDeviceInfoArray& video_devices);
+ virtual void StreamGenerated(
+ const std::string& label,
+ const StreamDeviceInfoArray& audio_devices,
+ const StreamDeviceInfoArray& video_devices) OVERRIDE;
- virtual void StreamGenerationFailed(const std::string& label);
- virtual void AudioDeviceFailed(const std::string& label, int index);
- virtual void VideoDeviceFailed(const std::string& label, int index);
+ virtual void StreamGenerationFailed(const std::string& label) OVERRIDE;
+ virtual void AudioDeviceFailed(const std::string& label, int index) OVERRIDE;
+ virtual void VideoDeviceFailed(const std::string& label, int index) OVERRIDE;
// BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
- bool* message_was_ok);
- virtual void OnChannelClosing();
+ bool* message_was_ok) OVERRIDE;
+ virtual void OnChannelClosing() OVERRIDE;
private:
friend class MockMediaStreamDispatcherHost;
« no previous file with comments | « content/browser/renderer_host/media/audio_sync_reader.h ('k') | content/browser/renderer_host/media/media_stream_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698