| Index: third_party/WebKit/Source/platform/scheduler/base/time_domain.cc
|
| diff --git a/third_party/WebKit/Source/platform/scheduler/base/time_domain.cc b/third_party/WebKit/Source/platform/scheduler/base/time_domain.cc
|
| index 59e3e3476f776d525a833bef262c7a7a6f4d76a5..fb5d98a20998c0cb7316abb6b4f6372eae97e553 100644
|
| --- a/third_party/WebKit/Source/platform/scheduler/base/time_domain.cc
|
| +++ b/third_party/WebKit/Source/platform/scheduler/base/time_domain.cc
|
| @@ -124,11 +124,11 @@ bool TimeDomain::UnregisterAsUpdatableTaskQueue(
|
| return was_updatable;
|
| }
|
|
|
| -void TimeDomain::UpdateWorkQueues(LazyNow lazy_now) {
|
| +void TimeDomain::UpdateWorkQueues(LazyNow* lazy_now) {
|
| DCHECK(main_thread_checker_.CalledOnValidThread());
|
|
|
| // Move any ready delayed tasks into the Incoming queues.
|
| - WakeupReadyDelayedQueues(&lazy_now);
|
| + WakeupReadyDelayedQueues(lazy_now);
|
|
|
| MoveNewlyUpdatableQueuesIntoUpdatableQueueSet();
|
|
|
|
|