Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_VIDEO_CAPTURE_FILE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ | |
| 6 #define MEDIA_VIDEO_CAPTURE_FILE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ | |
| 7 | |
| 8 #include "media/video/capture/video_capture_device_factory.h" | |
| 9 | |
| 10 namespace media { | |
| 11 | |
| 12 class MEDIA_EXPORT FileVideoCaptureDeviceFactory : | |
| 13 public VideoCaptureDeviceFactory { | |
| 14 public: | |
| 15 FileVideoCaptureDeviceFactory() {}; | |
|
tommi (sloooow) - chröme
2014/04/23 14:33:59
remove ; (and on the next line)
mcasas
2014/04/23 15:13:30
Done.
| |
| 16 virtual ~FileVideoCaptureDeviceFactory() {}; | |
| 17 | |
| 18 virtual scoped_ptr<VideoCaptureDevice> Create( | |
| 19 const VideoCaptureDevice::Name& device_name) OVERRIDE; | |
| 20 virtual void GetDeviceNames(VideoCaptureDevice::Names* device_names) OVERRIDE; | |
| 21 virtual void GetDeviceSupportedFormats( | |
| 22 const VideoCaptureDevice::Name& device, | |
| 23 VideoCaptureFormats* supported_formats) OVERRIDE; | |
| 24 }; | |
| 25 | |
| 26 } // namespace media | |
| 27 | |
| 28 #endif // MEDIA_VIDEO_CAPTURE_FILE_VIDEO_CAPTURE_DEVICE_FACTORY_H_ | |
| OLD | NEW |