// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_AUDIO_NULL_AUDIO_SINK_H_ #define MEDIA_AUDIO_NULL_AUDIO_SINK_H_ #include <memory> #include <string> #include "base/memory/raw_ptr.h" #include "base/sequence_checker.h" #include "base/task/sequenced_task_runner.h" #include "base/time/time.h" #include "media/base/audio_renderer_sink.h" namespace media { class AudioBus; class AudioHash; class FakeAudioWorker; class MEDIA_EXPORT NullAudioSink : public SwitchableAudioRendererSink { … }; } // namespace media #endif // MEDIA_AUDIO_NULL_AUDIO_SINK_H_