chromium/services/audio/public/cpp/sounds/audio_stream_handler.h

// Copyright 2013 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_PUBLIC_CPP_SOUNDS_AUDIO_STREAM_HANDLER_H_
#define SERVICES_AUDIO_PUBLIC_CPP_SOUNDS_AUDIO_STREAM_HANDLER_H_

#include <string_view>

#include "base/compiler_specific.h"
#include "base/component_export.h"
#include "base/sequence_checker.h"
#include "base/threading/sequence_bound.h"
#include "base/time/time.h"
#include "media/audio/audio_io.h"
#include "media/base/audio_codecs.h"
#include "media/base/audio_parameters.h"
#include "media/base/audio_renderer_sink.h"
#include "media/base/media_export.h"
#include "services/audio/public/cpp/sounds/sounds_manager.h"

namespace audio {

// This class sends a sound to the audio output device.
class COMPONENT_EXPORT(AUDIO_PUBLIC_CPP) AudioStreamHandler {};

}  // namespace audio

#endif  // SERVICES_AUDIO_PUBLIC_CPP_SOUNDS_AUDIO_STREAM_HANDLER_H_