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

Unified Diff: media/video/capture/fake_video_capture_device_factory.h

Issue 655713003: Standardize usage of virtual/override/final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « media/video/capture/fake_video_capture_device.h ('k') | media/video/capture/file_video_capture_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/capture/fake_video_capture_device_factory.h
diff --git a/media/video/capture/fake_video_capture_device_factory.h b/media/video/capture/fake_video_capture_device_factory.h
index a45dfa3937516fb1edf56cacb2ac264a26d90982..00cea5d63642e3cec0b213dda1051029965450fe 100644
--- a/media/video/capture/fake_video_capture_device_factory.h
+++ b/media/video/capture/fake_video_capture_device_factory.h
@@ -17,12 +17,12 @@ class MEDIA_EXPORT FakeVideoCaptureDeviceFactory :
public VideoCaptureDeviceFactory {
public:
FakeVideoCaptureDeviceFactory();
- virtual ~FakeVideoCaptureDeviceFactory() {}
+ ~FakeVideoCaptureDeviceFactory() override {}
- virtual scoped_ptr<VideoCaptureDevice> Create(
+ scoped_ptr<VideoCaptureDevice> Create(
const VideoCaptureDevice::Name& device_name) override;
- virtual void GetDeviceNames(VideoCaptureDevice::Names* device_names) override;
- virtual void GetDeviceSupportedFormats(
+ void GetDeviceNames(VideoCaptureDevice::Names* device_names) override;
+ void GetDeviceSupportedFormats(
const VideoCaptureDevice::Name& device,
VideoCaptureFormats* supported_formats) override;
« no previous file with comments | « media/video/capture/fake_video_capture_device.h ('k') | media/video/capture/file_video_capture_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698