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

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

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 months 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 a1dd74a6347d7b1ca87c8c1eae7a7a7ebd2ec468..87c95d4feaf5254b4cdeebbac93f73ee92691e00 100644
--- a/content/browser/renderer_host/media/media_stream_dispatcher_host.h
+++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.h
@@ -38,26 +38,26 @@ class CONTENT_EXPORT MediaStreamDispatcherHost : public BrowserMessageFilter,
int page_request_id,
const std::string& label,
const StreamDeviceInfoArray& audio_devices,
- const StreamDeviceInfoArray& video_devices) OVERRIDE;
+ const StreamDeviceInfoArray& video_devices) override;
virtual void StreamGenerationFailed(
int render_frame_id,
int page_request_id,
- content::MediaStreamRequestResult result) OVERRIDE;
+ content::MediaStreamRequestResult result) override;
virtual void DeviceStopped(int render_frame_id,
const std::string& label,
- const StreamDeviceInfo& device) OVERRIDE;
+ const StreamDeviceInfo& device) override;
virtual void DevicesEnumerated(int render_frame_id,
int page_request_id,
const std::string& label,
- const StreamDeviceInfoArray& devices) OVERRIDE;
+ const StreamDeviceInfoArray& devices) override;
virtual void DeviceOpened(int render_frame_id,
int page_request_id,
const std::string& label,
- const StreamDeviceInfo& video_device) OVERRIDE;
+ const StreamDeviceInfo& video_device) override;
// BrowserMessageFilter implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void OnChannelClosing() OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void OnChannelClosing() override;
protected:
virtual ~MediaStreamDispatcherHost();

Powered by Google App Engine
This is Rietveld 408576698