| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 return now_; | 158 return now_; |
| 159 } | 159 } |
| 160 | 160 |
| 161 TimeTicks TestMockTimeTaskRunner::NowTicks() const { | 161 TimeTicks TestMockTimeTaskRunner::NowTicks() const { |
| 162 DCHECK(thread_checker_.CalledOnValidThread()); | 162 DCHECK(thread_checker_.CalledOnValidThread()); |
| 163 return now_ticks_; | 163 return now_ticks_; |
| 164 } | 164 } |
| 165 | 165 |
| 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 WrapUnique(new 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 WrapUnique(new MockTickClock(this)); | 173 return MakeUnique<MockTickClock>(this); |
| 174 } | 174 } |
| 175 | 175 |
| 176 bool TestMockTimeTaskRunner::HasPendingTask() const { | 176 bool TestMockTimeTaskRunner::HasPendingTask() const { |
| 177 DCHECK(thread_checker_.CalledOnValidThread()); | 177 DCHECK(thread_checker_.CalledOnValidThread()); |
| 178 return !tasks_.empty(); | 178 return !tasks_.empty(); |
| 179 } | 179 } |
| 180 | 180 |
| 181 size_t TestMockTimeTaskRunner::GetPendingTaskCount() const { | 181 size_t TestMockTimeTaskRunner::GetPendingTaskCount() const { |
| 182 DCHECK(thread_checker_.CalledOnValidThread()); | 182 DCHECK(thread_checker_.CalledOnValidThread()); |
| 183 return tasks_.size(); | 183 return tasks_.size(); |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 if (!tasks_.empty() && | 260 if (!tasks_.empty() && |
| 261 (tasks_.top().GetTimeToRun() - reference) <= max_delta) { | 261 (tasks_.top().GetTimeToRun() - reference) <= max_delta) { |
| 262 *next_task = tasks_.top(); | 262 *next_task = tasks_.top(); |
| 263 tasks_.pop(); | 263 tasks_.pop(); |
| 264 return true; | 264 return true; |
| 265 } | 265 } |
| 266 return false; | 266 return false; |
| 267 } | 267 } |
| 268 | 268 |
| 269 } // namespace base | 269 } // namespace base |
| OLD | NEW |