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 "components/scheduler/base/virtual_time_domain.h" | 5 #include "components/scheduler/base/virtual_time_domain.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "components/scheduler/base/task_queue_impl.h" | 8 #include "components/scheduler/base/task_queue_impl.h" |
9 #include "components/scheduler/base/task_queue_manager.h" | 9 #include "components/scheduler/base/task_queue_manager.h" |
10 #include "components/scheduler/base/task_queue_manager_delegate.h" | 10 #include "components/scheduler/base/task_queue_manager_delegate.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 LazyNow VirtualTimeDomain::CreateLazyNow() const { | 26 LazyNow VirtualTimeDomain::CreateLazyNow() const { |
27 base::AutoLock lock(lock_); | 27 base::AutoLock lock(lock_); |
28 return LazyNow(now_); | 28 return LazyNow(now_); |
29 } | 29 } |
30 | 30 |
31 base::TimeTicks VirtualTimeDomain::Now() const { | 31 base::TimeTicks VirtualTimeDomain::Now() const { |
32 base::AutoLock lock(lock_); | 32 base::AutoLock lock(lock_); |
33 return now_; | 33 return now_; |
34 } | 34 } |
35 | 35 |
36 base::TimeTicks VirtualTimeDomain::ComputeDelayedRunTime( | |
37 base::TimeTicks time_domain_now, | |
38 base::TimeDelta delay) const { | |
39 return time_domain_now + delay; | |
40 } | |
41 | |
42 void VirtualTimeDomain::RequestWakeup(base::TimeTicks now, | 36 void VirtualTimeDomain::RequestWakeup(base::TimeTicks now, |
43 base::TimeDelta delay) { | 37 base::TimeDelta delay) { |
44 // We don't need to do anything here because the caller of AdvanceTo is | 38 // We don't need to do anything here because the caller of AdvanceTo is |
45 // responsible for calling TaskQueueManager::MaybeScheduleImmediateWork if | 39 // responsible for calling TaskQueueManager::MaybeScheduleImmediateWork if |
46 // needed. | 40 // needed. |
47 } | 41 } |
48 | 42 |
49 bool VirtualTimeDomain::MaybeAdvanceTime() { | 43 bool VirtualTimeDomain::MaybeAdvanceTime() { |
50 return false; | 44 return false; |
51 } | 45 } |
52 | 46 |
53 void VirtualTimeDomain::AsValueIntoInternal( | 47 void VirtualTimeDomain::AsValueIntoInternal( |
54 base::trace_event::TracedValue* state) const {} | 48 base::trace_event::TracedValue* state) const {} |
55 | 49 |
56 void VirtualTimeDomain::AdvanceTo(base::TimeTicks now) { | 50 void VirtualTimeDomain::AdvanceTo(base::TimeTicks now) { |
57 base::AutoLock lock(lock_); | 51 base::AutoLock lock(lock_); |
58 DCHECK_GE(now, now_); | 52 DCHECK_GE(now, now_); |
59 now_ = now; | 53 now_ = now; |
60 } | 54 } |
61 | 55 |
62 void VirtualTimeDomain::RequestDoWork() { | 56 void VirtualTimeDomain::RequestDoWork() { |
63 task_queue_manager_->MaybeScheduleImmediateWork(FROM_HERE); | 57 task_queue_manager_->MaybeScheduleImmediateWork(FROM_HERE); |
64 } | 58 } |
65 | 59 |
66 const char* VirtualTimeDomain::GetName() const { | 60 const char* VirtualTimeDomain::GetName() const { |
67 return "VirtualTimeDomain"; | 61 return "VirtualTimeDomain"; |
68 } | 62 } |
69 | 63 |
70 } // namespace scheduler | 64 } // namespace scheduler |
OLD | NEW |