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

Unified Diff: media/video/capture/mac/video_capture_device_factory_mac.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
Index: media/video/capture/mac/video_capture_device_factory_mac.h
diff --git a/media/video/capture/mac/video_capture_device_factory_mac.h b/media/video/capture/mac/video_capture_device_factory_mac.h
index 9756c1235acf2f1df1156f9abd1524ebeed17fb0..f3a180ca0ccd3fccad86dbc10bf14b10846da92b 100644
--- a/media/video/capture/mac/video_capture_device_factory_mac.h
+++ b/media/video/capture/mac/video_capture_device_factory_mac.h
@@ -19,14 +19,14 @@ class MEDIA_EXPORT VideoCaptureDeviceFactoryMac :
explicit VideoCaptureDeviceFactoryMac(
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner);
- virtual ~VideoCaptureDeviceFactoryMac();
+ ~VideoCaptureDeviceFactoryMac() 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 EnumerateDeviceNames(const base::Callback<
+ void GetDeviceNames(VideoCaptureDevice::Names* device_names) override;
+ void EnumerateDeviceNames(const base::Callback<
void(scoped_ptr<media::VideoCaptureDevice::Names>)>& callback) override;
- virtual void GetDeviceSupportedFormats(
+ void GetDeviceSupportedFormats(
const VideoCaptureDevice::Name& device,
VideoCaptureFormats* supported_formats) override;
« no previous file with comments | « media/video/capture/mac/video_capture_device_decklink_mac.mm ('k') | media/video/capture/mac/video_capture_device_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698