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

Unified Diff: content/browser/renderer_host/media/video_capture_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/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 5306e55d121cc52420942a5877d2d29e9ad5c69a..168c4f3f770b5d268d9a9917f5a43b40f0f794cd 100644
--- a/content/browser/renderer_host/media/video_capture_host.h
+++ b/content/browser/renderer_host/media/video_capture_host.h
@@ -55,24 +55,24 @@ class CONTENT_EXPORT VideoCaptureHost
explicit VideoCaptureHost(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;
// VideoCaptureControllerEventHandler implementation.
- virtual void OnError(const VideoCaptureControllerID& id);
+ virtual void OnError(const VideoCaptureControllerID& id) OVERRIDE;
virtual void OnBufferCreated(const VideoCaptureControllerID& id,
base::SharedMemoryHandle handle,
- int length, int buffer_id);
+ int length, int buffer_id) OVERRIDE;
virtual void OnBufferReady(const VideoCaptureControllerID& id,
int buffer_id,
- base::Time timestamp);
+ base::Time timestamp) OVERRIDE;
virtual void OnFrameInfo(const VideoCaptureControllerID& id,
int width,
int height,
- int frame_per_second);
- virtual void OnReadyToDelete(const VideoCaptureControllerID& id);
+ int frame_per_second) OVERRIDE;
+ virtual void OnReadyToDelete(const VideoCaptureControllerID& id) OVERRIDE;
private:
friend class content::BrowserThread;

Powered by Google App Engine
This is Rietveld 408576698