// Copyright 2017 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_AUDIO_INPUT_STREAM_DATA_INTERCEPTOR_H_ #define MEDIA_AUDIO_AUDIO_INPUT_STREAM_DATA_INTERCEPTOR_H_ #include <memory> #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "base/sequence_checker.h" #include "media/audio/audio_io.h" #include "media/base/media_export.h" namespace media { class AudioDebugRecorder; // This class wraps an AudioInputStream to be able to intercept the data for // debug recording purposes. class MEDIA_EXPORT AudioInputStreamDataInterceptor : public AudioInputStream, public AudioInputStream::AudioInputCallback { … }; } // namespace media #endif // MEDIA_AUDIO_AUDIO_INPUT_STREAM_DATA_INTERCEPTOR_H_