chromium/ui/events/devices/microphone_mute_switch_monitor.cc

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

#include "ui/events/devices/microphone_mute_switch_monitor.h"

#include "base/no_destructor.h"
#include "base/observer_list.h"

namespace ui {

MicrophoneMuteSwitchMonitor::MicrophoneMuteSwitchMonitor() = default;

MicrophoneMuteSwitchMonitor::~MicrophoneMuteSwitchMonitor() = default;

// static
MicrophoneMuteSwitchMonitor* MicrophoneMuteSwitchMonitor::Get() {}

void MicrophoneMuteSwitchMonitor::AddObserver(Observer* observer) {}

void MicrophoneMuteSwitchMonitor::RemoveObserver(Observer* observer) {}

void MicrophoneMuteSwitchMonitor::SetMicrophoneMuteSwitchValue(bool switch_on) {}

}  // namespace ui