chromium/services/audio/audio_manager_power_user.h

// Copyright 2022 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_AUDIO_AUDIO_MANAGER_POWER_USER_H_
#define SERVICES_AUDIO_AUDIO_MANAGER_POWER_USER_H_

#include <string>
#include "media/audio/audio_manager.h"
#include "media/base/audio_parameters.h"

namespace media {
class AudioManager;
}  // namespace media

namespace audio {

// Helper class to get access to the protected AudioManager API.
// TODO(crbug.com/40572543): Replace this class with a public API
// once the audio manager is inaccessible from outside the audio service.
class AudioManagerPowerUser {};

}  // namespace audio

#endif  // SERVICES_AUDIO_AUDIO_MANAGER_POWER_USER_H_