// Copyright 2014 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_SINGLE_THREAD_TASK_RUNNER_H_ #define MEDIA_BASE_FAKE_SINGLE_THREAD_TASK_RUNNER_H_ #include <map> #include "base/functional/callback_forward.h" #include "base/memory/raw_ptr.h" #include "base/task/single_thread_task_runner.h" #include "base/test/simple_test_tick_clock.h" #include "base/time/time.h" namespace media { class FakeSingleThreadTaskRunner final : public base::SingleThreadTaskRunner { … }; } // namespace media #endif // MEDIA_BASE_FAKE_SINGLE_THREAD_TASK_RUNNER_H_