// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Implementation of a VideoCaptureDeviceFactoryLinux class. #ifndef MEDIA_CAPTURE_VIDEO_LINUX_VIDEO_CAPTURE_DEVICE_FACTORY_LINUX_H_ #define MEDIA_CAPTURE_VIDEO_LINUX_VIDEO_CAPTURE_DEVICE_FACTORY_LINUX_H_ #include "base/memory/weak_ptr.h" #if defined(WEBRTC_USE_PIPEWIRE) #include "media/capture/video/linux/video_capture_device_factory_webrtc.h" #endif // defined(WEBRTC_USE_PIPEWIRE) #include "media/capture/video/video_capture_device_factory.h" namespace media { // Extension of VideoCaptureDeviceFactory to create and manipulate Linux // devices. class CAPTURE_EXPORT VideoCaptureDeviceFactoryLinux : public VideoCaptureDeviceFactory { … }; } // namespace media #endif // MEDIA_CAPTURE_VIDEO_LINUX_VIDEO_CAPTURE_DEVICE_FACTORY_LINUX_H_