| 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 25d0caff0b9dbd0306f3bf0c44fbd742c3c483db..e55d7feb3e80b4eae941e533a53abe929b41d265 100644
|
| --- a/third_party/WebKit/Source/platform/scheduler/base/time_domain.cc
|
| +++ b/third_party/WebKit/Source/platform/scheduler/base/time_domain.cc
|
| @@ -117,11 +117,11 @@ void TimeDomain::OnQueueHasIncomingImmediateWork(
|
| observer_->OnTimeDomainHasImmediateWork(queue);
|
| }
|
|
|
| -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);
|
|
|
| std::set<internal::TaskQueueImpl*> queues_to_reload_if_empty;
|
|
|
|
|