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 #ifndef COMPONENTS_SCHEDULER_BASE_TIME_DOMAIN_H_ | 5 #ifndef COMPONENTS_SCHEDULER_BASE_TIME_DOMAIN_H_ |
6 #define COMPONENTS_SCHEDULER_BASE_TIME_DOMAIN_H_ | 6 #define COMPONENTS_SCHEDULER_BASE_TIME_DOMAIN_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 }; | 39 }; |
40 | 40 |
41 explicit TimeDomain(Observer* observer); | 41 explicit TimeDomain(Observer* observer); |
42 virtual ~TimeDomain(); | 42 virtual ~TimeDomain(); |
43 | 43 |
44 // Returns a LazyNow that evaluate this TimeDomain's Now. Can be called from | 44 // Returns a LazyNow that evaluate this TimeDomain's Now. Can be called from |
45 // any thread. | 45 // any thread. |
46 // TODO(alexclarke): Make this main thread only. | 46 // TODO(alexclarke): Make this main thread only. |
47 virtual LazyNow CreateLazyNow() = 0; | 47 virtual LazyNow CreateLazyNow() = 0; |
48 | 48 |
| 49 // Computes a runtime which is >= |time_domain_now| + |delay|. This is used to |
| 50 // allow the TimeDomain to decide if the real or virtual time should be used |
| 51 // when computing the task run time. This can be called from any thread. |
| 52 virtual base::TimeTicks ComputeDelayedRunTime( |
| 53 base::TimeTicks time_domain_now, |
| 54 base::TimeDelta delay) const = 0; |
| 55 |
49 // Some TimeDomains support virtual time, this method tells us to advance time | 56 // Some TimeDomains support virtual time, this method tells us to advance time |
50 // if possible and return true if time was advanced. | 57 // if possible and return true if time was advanced. |
51 virtual bool MaybeAdvanceTime() = 0; | 58 virtual bool MaybeAdvanceTime() = 0; |
52 | 59 |
53 // Returns the name of this time domain for tracing. | 60 // Returns the name of this time domain for tracing. |
54 virtual const char* GetName() const = 0; | 61 virtual const char* GetName() const = 0; |
55 | 62 |
56 // If there is a scheduled delayed task, |out_time| is set to the scheduled | 63 // If there is a scheduled delayed task, |out_time| is set to the scheduled |
57 // runtime for the next one and it returns true. Returns false otherwise. | 64 // runtime for the next one and it returns true. Returns false otherwise. |
58 bool NextScheduledRunTime(base::TimeTicks* out_time) const; | 65 bool NextScheduledRunTime(base::TimeTicks* out_time) const; |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 Observer* observer_; | 152 Observer* observer_; |
146 | 153 |
147 base::ThreadChecker main_thread_checker_; | 154 base::ThreadChecker main_thread_checker_; |
148 | 155 |
149 DISALLOW_COPY_AND_ASSIGN(TimeDomain); | 156 DISALLOW_COPY_AND_ASSIGN(TimeDomain); |
150 }; | 157 }; |
151 | 158 |
152 } // namespace scheduler | 159 } // namespace scheduler |
153 | 160 |
154 #endif // COMPONENTS_SCHEDULER_BASE_TIME_DOMAIN_H_ | 161 #endif // COMPONENTS_SCHEDULER_BASE_TIME_DOMAIN_H_ |
OLD | NEW |