Index: media/video/capture/fake_video_capture_device.h |
diff --git a/media/video/capture/fake_video_capture_device.h b/media/video/capture/fake_video_capture_device.h |
index c04ae24ce79bfdc8e9c6c17ad6de70899b4d6906..30d1b3358f59980be719471a2bf22ceffd4534f5 100644 |
--- a/media/video/capture/fake_video_capture_device.h |
+++ b/media/video/capture/fake_video_capture_device.h |
@@ -23,13 +23,12 @@ class MEDIA_EXPORT FakeVideoCaptureDevice : public VideoCaptureDevice { |
static const int kFakeCaptureTimeoutMs = 50; |
FakeVideoCaptureDevice(); |
- virtual ~FakeVideoCaptureDevice(); |
+ ~FakeVideoCaptureDevice() override; |
// VideoCaptureDevice implementation. |
- virtual void AllocateAndStart( |
- const VideoCaptureParams& params, |
- scoped_ptr<VideoCaptureDevice::Client> client) override; |
- virtual void StopAndDeAllocate() override; |
+ void AllocateAndStart(const VideoCaptureParams& params, |
+ scoped_ptr<VideoCaptureDevice::Client> client) override; |
+ void StopAndDeAllocate() override; |
// Sets the formats to use sequentially when the device is configured as |
// variable capture resolution. Works only before AllocateAndStart() or |