| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "base/test/test_mock_time_task_runner.h" | 5 #include "base/test/test_mock_time_task_runner.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 std::unique_ptr<Clock> TestMockTimeTaskRunner::GetMockClock() const { | 166 std::unique_ptr<Clock> TestMockTimeTaskRunner::GetMockClock() const { |
| 167 DCHECK(thread_checker_.CalledOnValidThread()); | 167 DCHECK(thread_checker_.CalledOnValidThread()); |
| 168 return MakeUnique<MockClock>(this); | 168 return MakeUnique<MockClock>(this); |
| 169 } | 169 } |
| 170 | 170 |
| 171 std::unique_ptr<TickClock> TestMockTimeTaskRunner::GetMockTickClock() const { | 171 std::unique_ptr<TickClock> TestMockTimeTaskRunner::GetMockTickClock() const { |
| 172 DCHECK(thread_checker_.CalledOnValidThread()); | 172 DCHECK(thread_checker_.CalledOnValidThread()); |
| 173 return MakeUnique<MockTickClock>(this); | 173 return MakeUnique<MockTickClock>(this); |
| 174 } | 174 } |
| 175 | 175 |
| 176 std::deque<TestPendingTask> TestMockTimeTaskRunner::TakePendingTasks() { |
| 177 std::deque<TestPendingTask> tasks; |
| 178 while (!tasks_.empty()) { |
| 179 tasks.push_back(tasks_.top()); |
| 180 tasks_.pop(); |
| 181 } |
| 182 return tasks; |
| 183 } |
| 184 |
| 176 bool TestMockTimeTaskRunner::HasPendingTask() const { | 185 bool TestMockTimeTaskRunner::HasPendingTask() const { |
| 177 DCHECK(thread_checker_.CalledOnValidThread()); | 186 DCHECK(thread_checker_.CalledOnValidThread()); |
| 178 return !tasks_.empty(); | 187 return !tasks_.empty(); |
| 179 } | 188 } |
| 180 | 189 |
| 181 size_t TestMockTimeTaskRunner::GetPendingTaskCount() const { | 190 size_t TestMockTimeTaskRunner::GetPendingTaskCount() const { |
| 182 DCHECK(thread_checker_.CalledOnValidThread()); | 191 DCHECK(thread_checker_.CalledOnValidThread()); |
| 183 return tasks_.size(); | 192 return tasks_.size(); |
| 184 } | 193 } |
| 185 | 194 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 if (!tasks_.empty() && | 269 if (!tasks_.empty() && |
| 261 (tasks_.top().GetTimeToRun() - reference) <= max_delta) { | 270 (tasks_.top().GetTimeToRun() - reference) <= max_delta) { |
| 262 *next_task = tasks_.top(); | 271 *next_task = tasks_.top(); |
| 263 tasks_.pop(); | 272 tasks_.pop(); |
| 264 return true; | 273 return true; |
| 265 } | 274 } |
| 266 return false; | 275 return false; |
| 267 } | 276 } |
| 268 | 277 |
| 269 } // namespace base | 278 } // namespace base |
| OLD | NEW |