Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: components/scheduler/base/virtual_time_domain.cc

Issue 1432263002: (reland) Adds TimeDomains to the TaskQueueManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix thread_hop_task DCHECK Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "components/scheduler/base/virtual_time_domain.h"
6
7 #include "base/bind.h"
8 #include "components/scheduler/base/task_queue_impl.h"
9 #include "components/scheduler/base/task_queue_manager_delegate.h"
10
11 namespace scheduler {
12
13 VirtualTimeDomain::VirtualTimeDomain(base::TimeTicks initial_time)
14 : now_(initial_time) {}
15
16 VirtualTimeDomain::~VirtualTimeDomain() {}
17
18 LazyNow VirtualTimeDomain::CreateLazyNow() {
19 base::AutoLock lock(lock_);
20 return LazyNow(now_);
21 }
22
23 void VirtualTimeDomain::RequestWakeup(base::TimeDelta delay) {
24 // We don't need to do anything here because AdvanceTo triggers delayed tasks.
25 }
26
27 bool VirtualTimeDomain::MaybeAdvanceTime() {
28 return false;
29 }
30
31 void VirtualTimeDomain::AsValueIntoInternal(
32 base::trace_event::TracedValue* state) const {}
33
34 void VirtualTimeDomain::AdvanceTo(base::TimeTicks now) {
35 base::AutoLock lock(lock_);
36 DCHECK_GE(now, now_);
37 now_ = now;
38 LazyNow lazy_now(now_);
39 WakeupReadyDelayedQueues(&lazy_now);
40 }
41
42 const char* VirtualTimeDomain::GetName() const {
43 return "VirtualTimeDomain";
44 }
45
46 } // namespace scheduler
OLDNEW
« no previous file with comments | « components/scheduler/base/virtual_time_domain.h ('k') | components/scheduler/child/idle_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698