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

Unified Diff: content/browser/renderer_host/media/video_capture_manager.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_manager.h
diff --git a/content/browser/renderer_host/media/video_capture_manager.h b/content/browser/renderer_host/media/video_capture_manager.h
index 58870efcc60cdd94f05f985ddf99b6fbc2bf85c5..dbce623f87b0c89e08a35f5ed437e5146375379a 100644
--- a/content/browser/renderer_host/media/video_capture_manager.h
+++ b/content/browser/renderer_host/media/video_capture_manager.h
@@ -38,15 +38,15 @@ class CONTENT_EXPORT VideoCaptureManager : public MediaStreamProvider {
virtual ~VideoCaptureManager();
// Implements MediaStreamProvider.
- virtual void Register(MediaStreamProviderListener* listener);
+ virtual void Register(MediaStreamProviderListener* listener) OVERRIDE;
- virtual void Unregister();
+ virtual void Unregister() OVERRIDE;
- virtual void EnumerateDevices();
+ virtual void EnumerateDevices() OVERRIDE;
- virtual int Open(const StreamDeviceInfo& device);
+ virtual int Open(const StreamDeviceInfo& device) OVERRIDE;
- virtual void Close(int capture_session_id);
+ virtual void Close(int capture_session_id) OVERRIDE;
// Functions used to start and stop media flow.
// Start allocates the device and no other application can use the device
« no previous file with comments | « content/browser/renderer_host/media/video_capture_host.h ('k') | content/browser/renderer_host/mock_render_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698