// Copyright 2018 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_TEST_FAKE_CONSUMER_H_ #define SERVICES_AUDIO_TEST_FAKE_CONSUMER_H_ #include <vector> #include "base/files/file_path.h" namespace media { class AudioBus; } namespace audio { // Consumes and records the audio signal. Then, test procedures may use the // utility methods to analyze the recording. class FakeConsumer { … }; } // namespace audio #endif // SERVICES_AUDIO_TEST_FAKE_CONSUMER_H_