chromium/media/capture/video/linux/fake_device_provider.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/capture/video/linux/fake_device_provider.h"

#include <string>
#include <vector>

#include "base/ranges/algorithm.h"
#include "media/capture/video/video_capture_device_descriptor.h"
#include "media/capture/video_capture_types.h"

namespace media {

FakeDeviceProvider::FakeDeviceProvider() = default;
FakeDeviceProvider::~FakeDeviceProvider() = default;

void FakeDeviceProvider::AddDevice(
    const VideoCaptureDeviceDescriptor& descriptor) {}

void FakeDeviceProvider::GetDeviceIds(
    std::vector<std::string>* target_container) {}

std::string FakeDeviceProvider::GetDeviceModelId(const std::string& device_id) {}

std::string FakeDeviceProvider::GetDeviceDisplayName(
    const std::string& device_id) {}

}  // namespace media