// 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 MEDIA_BASE_FAKE_AUDIO_WORKER_H_ #define MEDIA_BASE_FAKE_AUDIO_WORKER_H_ #include "base/functional/callback_forward.h" #include "base/memory/scoped_refptr.h" #include "base/task/sequenced_task_runner.h" #include "media/base/media_export.h" namespace base { class TimeDelta; class TimeTicks; } // namespace base namespace media { class AudioParameters; // A fake audio worker. Using a provided message loop, FakeAudioWorker will // call back the provided callback like a real audio consumer or producer would. class MEDIA_EXPORT FakeAudioWorker { … }; } // namespace media #endif // MEDIA_BASE_FAKE_AUDIO_WORKER_H_