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

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

Issue 1477353002: Revert of Move throttling of background timers into the renderer scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
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 #include "components/scheduler/base/virtual_time_domain.h" 5 #include "components/scheduler/base/virtual_time_domain.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "components/scheduler/base/task_queue_impl.h" 8 #include "components/scheduler/base/task_queue_impl.h"
9 #include "components/scheduler/base/task_queue_manager_delegate.h" 9 #include "components/scheduler/base/task_queue_manager_delegate.h"
10 10
11 namespace scheduler { 11 namespace scheduler {
12 12
13 VirtualTimeDomain::VirtualTimeDomain(TimeDomain::Observer* observer, 13 VirtualTimeDomain::VirtualTimeDomain(base::TimeTicks initial_time)
14 base::TimeTicks initial_time) 14 : now_(initial_time) {}
15 : TimeDomain(observer), now_(initial_time) {}
16 15
17 VirtualTimeDomain::~VirtualTimeDomain() {} 16 VirtualTimeDomain::~VirtualTimeDomain() {}
18 17
19 void VirtualTimeDomain::OnRegisterWithTaskQueueManager( 18 void VirtualTimeDomain::OnRegisterWithTaskQueueManager(
20 TaskQueueManagerDelegate* task_queue_manager_delegate, 19 TaskQueueManagerDelegate* task_queue_manager_delegate,
21 base::Closure do_work_closure) { 20 base::Closure do_work_closure) {
22 task_queue_manager_delegate_ = task_queue_manager_delegate; 21 task_queue_manager_delegate_ = task_queue_manager_delegate;
23 do_work_closure_ = do_work_closure; 22 do_work_closure_ = do_work_closure;
24 DCHECK(task_queue_manager_delegate_); 23 DCHECK(task_queue_manager_delegate_);
25 } 24 }
(...skipping 12 matching lines...) Expand all
38 return false; 37 return false;
39 } 38 }
40 39
41 void VirtualTimeDomain::AsValueIntoInternal( 40 void VirtualTimeDomain::AsValueIntoInternal(
42 base::trace_event::TracedValue* state) const {} 41 base::trace_event::TracedValue* state) const {}
43 42
44 void VirtualTimeDomain::AdvanceTo(base::TimeTicks now) { 43 void VirtualTimeDomain::AdvanceTo(base::TimeTicks now) {
45 base::AutoLock lock(lock_); 44 base::AutoLock lock(lock_);
46 DCHECK_GE(now, now_); 45 DCHECK_GE(now, now_);
47 now_ = now; 46 now_ = now;
48 DCHECK(task_queue_manager_delegate_);
49
50 task_queue_manager_delegate_->PostTask(FROM_HERE, do_work_closure_); 47 task_queue_manager_delegate_->PostTask(FROM_HERE, do_work_closure_);
51 } 48 }
52 49
53 const char* VirtualTimeDomain::GetName() const { 50 const char* VirtualTimeDomain::GetName() const {
54 return "VirtualTimeDomain"; 51 return "VirtualTimeDomain";
55 } 52 }
56 53
57 } // namespace scheduler 54 } // 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