chromium/services/video_capture/devices_changed_notifier.h

// 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.

#ifndef SERVICES_VIDEO_CAPTURE_DEVICES_CHANGED_NOTIFIER_H_
#define SERVICES_VIDEO_CAPTURE_DEVICES_CHANGED_NOTIFIER_H_

#include "base/system/system_monitor.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/remote_set.h"
#include "services/video_capture/public/mojom/devices_changed_observer.mojom.h"

namespace base {
class SequencedTaskRunner;
}

namespace video_capture {

// This class publishes notifications about changes in the video_capture devices
// to registered observers.
class DevicesChangedNotifier final
    : public base::SystemMonitor::DevicesChangedObserver {};

}  // namespace video_capture

#endif  // SERVICES_VIDEO_CAPTURE_DEVICES_CHANGED_NOTIFIER_H_