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

Unified Diff: content/browser/renderer_host/media/video_capture_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/video_capture_host.h
diff --git a/content/browser/renderer_host/media/video_capture_host.h b/content/browser/renderer_host/media/video_capture_host.h
index 68edae1f85372af71c1eda46c587a2b21079e336..cf6e73fc605f4d1c0afee3091ed4a8dba889fd29 100644
--- a/content/browser/renderer_host/media/video_capture_host.h
+++ b/content/browser/renderer_host/media/video_capture_host.h
@@ -71,29 +71,29 @@ class CONTENT_EXPORT VideoCaptureHost
explicit VideoCaptureHost(MediaStreamManager* media_stream_manager);
// BrowserMessageFilter implementation.
- virtual void OnChannelClosing() OVERRIDE;
- virtual void OnDestruct() const OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void OnChannelClosing() override;
+ virtual void OnDestruct() const override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
// VideoCaptureControllerEventHandler implementation.
- virtual void OnError(const VideoCaptureControllerID& id) OVERRIDE;
+ virtual void OnError(const VideoCaptureControllerID& id) override;
virtual void OnBufferCreated(const VideoCaptureControllerID& id,
base::SharedMemoryHandle handle,
int length,
- int buffer_id) OVERRIDE;
+ int buffer_id) override;
virtual void OnBufferDestroyed(const VideoCaptureControllerID& id,
- int buffer_id) OVERRIDE;
+ int buffer_id) override;
virtual void OnBufferReady(const VideoCaptureControllerID& id,
int buffer_id,
const media::VideoCaptureFormat& format,
const gfx::Rect& visible_rect,
- base::TimeTicks timestamp) OVERRIDE;
+ base::TimeTicks timestamp) override;
virtual void OnMailboxBufferReady(const VideoCaptureControllerID& id,
int buffer_id,
const gpu::MailboxHolder& mailbox_holder,
const media::VideoCaptureFormat& format,
- base::TimeTicks timestamp) OVERRIDE;
- virtual void OnEnded(const VideoCaptureControllerID& id) OVERRIDE;
+ base::TimeTicks timestamp) override;
+ virtual void OnEnded(const VideoCaptureControllerID& id) override;
private:
friend class BrowserThread;

Powered by Google App Engine
This is Rietveld 408576698