#include "services/audio/device_notifier.h"
#include <utility>
#include "base/functional/bind.h"
#include "base/task/sequenced_task_runner.h"
#include "base/trace_event/trace_event.h"
namespace audio {
DeviceNotifier::DeviceNotifier()
: … { … }
DeviceNotifier::~DeviceNotifier() { … }
void DeviceNotifier::Bind(
mojo::PendingReceiver<mojom::DeviceNotifier> receiver) { … }
void DeviceNotifier::RegisterListener(
mojo::PendingRemote<mojom::DeviceListener> listener) { … }
void DeviceNotifier::OnDevicesChanged(
base::SystemMonitor::DeviceType device_type) { … }
void DeviceNotifier::UpdateListeners() { … }
}