| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_CAST_TEST_FAKE_TASK_RUNNER_H_ | 5 #ifndef MEDIA_CAST_TEST_FAKE_TASK_RUNNER_H_ |
| 6 #define MEDIA_CAST_TEST_FAKE_TASK_RUNNER_H_ | 6 #define MEDIA_CAST_TEST_FAKE_TASK_RUNNER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/single_thread_task_runner.h" | 12 #include "base/single_thread_task_runner.h" |
| 13 #include "base/test/simple_test_tick_clock.h" | 13 #include "base/test/simple_test_tick_clock.h" |
| 14 | 14 |
| 15 namespace media { | 15 namespace media { |
| 16 namespace cast { | |
| 17 namespace test { | |
| 18 | 16 |
| 19 class FakeSingleThreadTaskRunner : public base::SingleThreadTaskRunner { | 17 class FakeSingleThreadTaskRunner : public base::SingleThreadTaskRunner { |
| 20 public: | 18 public: |
| 21 explicit FakeSingleThreadTaskRunner(base::SimpleTestTickClock* clock); | 19 explicit FakeSingleThreadTaskRunner(base::SimpleTestTickClock* clock); |
| 22 | 20 |
| 23 void RunTasks(); | 21 void RunTasks(); |
| 24 | 22 |
| 25 // Note: Advances |clock_|. | 23 // Note: Advances |clock_|. |
| 26 void Sleep(base::TimeDelta t); | 24 void Sleep(base::TimeDelta t); |
| 27 | 25 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 51 // Note: The std::map data structure was chosen because the entire | 49 // Note: The std::map data structure was chosen because the entire |
| 52 // cast_unittests suite performed 20% faster than when using | 50 // cast_unittests suite performed 20% faster than when using |
| 53 // std::priority_queue. http://crbug.com/530842 | 51 // std::priority_queue. http://crbug.com/530842 |
| 54 std::map<TaskKey, base::Closure> tasks_; | 52 std::map<TaskKey, base::Closure> tasks_; |
| 55 | 53 |
| 56 bool fail_on_next_task_; | 54 bool fail_on_next_task_; |
| 57 | 55 |
| 58 DISALLOW_COPY_AND_ASSIGN(FakeSingleThreadTaskRunner); | 56 DISALLOW_COPY_AND_ASSIGN(FakeSingleThreadTaskRunner); |
| 59 }; | 57 }; |
| 60 | 58 |
| 61 } // namespace test | |
| 62 } // namespace cast | |
| 63 } // namespace media | 59 } // namespace media |
| 64 | 60 |
| 65 #endif // MEDIA_CAST_TEST_FAKE_TASK_RUNNER_H_ | 61 #endif // MEDIA_CAST_TEST_FAKE_TASK_RUNNER_H_ |
| OLD | NEW |