chromium/services/video_capture/devices_changed_notifier.cc

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

#include "services/video_capture/devices_changed_notifier.h"

#include <utility>

#include "base/functional/bind.h"
#include "base/task/sequenced_task_runner.h"

namespace video_capture {

DevicesChangedNotifier::DevicesChangedNotifier()
    :{}

DevicesChangedNotifier::~DevicesChangedNotifier() {}

void DevicesChangedNotifier::RegisterObserver(
    mojo::PendingRemote<mojom::DevicesChangedObserver> observer) {}

void DevicesChangedNotifier::OnDevicesChanged(
    base::SystemMonitor::DeviceType device_type) {}

void DevicesChangedNotifier::UpdateObservers() {}

}  // namespace video_capture