// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_CAPTURE_VIDEO_MOCK_DEVICE_FACTORY_H_ #define MEDIA_CAPTURE_VIDEO_MOCK_DEVICE_FACTORY_H_ #include <map> #include "media/capture/video/video_capture_device_factory.h" namespace media { // Implementation of media::VideoCaptureDeviceFactory that allows clients to // add mock devices. class MockDeviceFactory : public media::VideoCaptureDeviceFactory { … }; } // namespace media #endif // MEDIA_CAPTURE_VIDEO_MOCK_DEVICE_FACTORY_H_