OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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 #include "device/video/video_capture_device_factory_impl.h" |
| 6 |
| 7 namespace device { |
| 8 |
| 9 void VideoCaptureDeviceFactoryImpl::EnumerateDeviceDescriptors( |
| 10 const EnumerateDeviceDescriptorsCallback& callback) {} |
| 11 |
| 12 void VideoCaptureDeviceFactoryImpl::GetSupportedFormats( |
| 13 mojom::VideoCaptureDeviceDescriptorPtr device_descriptor, |
| 14 const GetSupportedFormatsCallback& callback) {} |
| 15 |
| 16 void VideoCaptureDeviceFactoryImpl::CreateDevice( |
| 17 mojom::VideoCaptureDeviceDescriptorPtr device_descriptor, |
| 18 const CreateDeviceCallback& callback) {} |
| 19 |
| 20 } // namespace device |
OLD | NEW |