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 "base/logging.h" |
| 6 #include "services/video_capture/video_capture_device_factory_impl.h" |
| 7 |
| 8 namespace video_capture { |
| 9 |
| 10 void VideoCaptureDeviceFactoryImpl::EnumerateDeviceDescriptors( |
| 11 const EnumerateDeviceDescriptorsCallback& callback) { |
| 12 NOTIMPLEMENTED(); |
| 13 } |
| 14 |
| 15 void VideoCaptureDeviceFactoryImpl::GetSupportedFormats( |
| 16 mojom::VideoCaptureDeviceDescriptorPtr device_descriptor, |
| 17 const GetSupportedFormatsCallback& callback) { |
| 18 NOTIMPLEMENTED(); |
| 19 } |
| 20 |
| 21 void VideoCaptureDeviceFactoryImpl::CreateDevice( |
| 22 mojom::VideoCaptureDeviceDescriptorPtr device_descriptor, |
| 23 mojom::VideoCaptureDeviceRequest device_request) { |
| 24 NOTIMPLEMENTED(); |
| 25 } |
| 26 |
| 27 } // namespace video_capture |
OLD | NEW |