| Index: third_party/WebKit/Source/platform/scheduler/renderer/throttled_time_domain.cc
|
| diff --git a/third_party/WebKit/Source/platform/scheduler/renderer/throttled_time_domain.cc b/third_party/WebKit/Source/platform/scheduler/renderer/throttled_time_domain.cc
|
| index 6afb8398b1bbfeb673cfb12aba7356a9ef259b55..a859d091170b6533815787e08a47f6240e6379ea 100644
|
| --- a/third_party/WebKit/Source/platform/scheduler/renderer/throttled_time_domain.cc
|
| +++ b/third_party/WebKit/Source/platform/scheduler/renderer/throttled_time_domain.cc
|
| @@ -17,14 +17,10 @@
|
| return "ThrottledTimeDomain";
|
| }
|
|
|
| -void ThrottledTimeDomain::RequestWakeupAt(LazyNow* lazy_now,
|
| - base::TimeTicks run_time) {
|
| +void ThrottledTimeDomain::RequestWakeup(base::TimeTicks now,
|
| + base::TimeDelta delay) {
|
| // We assume the owner (i.e. TaskQueueThrottler) will manage wakeups on our
|
| // behalf.
|
| -}
|
| -
|
| -void ThrottledTimeDomain::CancelWakeupAt(base::TimeTicks run_time) {
|
| - // We ignore this because RequestWakeupAt is a NOP.
|
| }
|
|
|
| base::Optional<base::TimeDelta> ThrottledTimeDomain::DelayTillNextTask(
|
|
|