// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_AUDIO_TEST_AUDIO_THREAD_H_ #define MEDIA_AUDIO_TEST_AUDIO_THREAD_H_ #include #include "base/memory/ref_counted.h" #include "base/threading/thread.h" #include "base/threading/thread_checker.h" #include "media/audio/audio_thread.h" namespace media { class TestAudioThread final : public AudioThread { public: TestAudioThread(); explicit TestAudioThread(bool use_real_thread); ~TestAudioThread() final; // AudioThread implementation. void Stop() final; bool IsHung() const final; base::SingleThreadTaskRunner* GetTaskRunner() final; base::SingleThreadTaskRunner* GetWorkerTaskRunner() final; private: std::unique_ptr thread_; scoped_refptr task_runner_; THREAD_CHECKER(thread_checker_); DISALLOW_COPY_AND_ASSIGN(TestAudioThread); }; } // namespace media #endif // MEDIA_AUDIO_TEST_AUDIO_THREAD_H_