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

Unified Diff: components/scheduler/base/virtual_time_domain.cc

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/scheduler/base/virtual_time_domain.h ('k') | components/scheduler/base/work_queue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/scheduler/base/virtual_time_domain.cc
diff --git a/components/scheduler/base/virtual_time_domain.cc b/components/scheduler/base/virtual_time_domain.cc
deleted file mode 100644
index db9c4035b29f35eb3668a3ebffdb2ab53375b9ae..0000000000000000000000000000000000000000
--- a/components/scheduler/base/virtual_time_domain.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/scheduler/base/virtual_time_domain.h"
-
-#include "base/bind.h"
-#include "components/scheduler/base/task_queue_impl.h"
-#include "components/scheduler/base/task_queue_manager.h"
-#include "components/scheduler/base/task_queue_manager_delegate.h"
-
-namespace scheduler {
-
-VirtualTimeDomain::VirtualTimeDomain(TimeDomain::Observer* observer,
- base::TimeTicks initial_time)
- : TimeDomain(observer), now_(initial_time), task_queue_manager_(nullptr) {}
-
-VirtualTimeDomain::~VirtualTimeDomain() {}
-
-void VirtualTimeDomain::OnRegisterWithTaskQueueManager(
- TaskQueueManager* task_queue_manager) {
- task_queue_manager_ = task_queue_manager;
- DCHECK(task_queue_manager_);
-}
-
-LazyNow VirtualTimeDomain::CreateLazyNow() const {
- base::AutoLock lock(lock_);
- return LazyNow(now_);
-}
-
-base::TimeTicks VirtualTimeDomain::Now() const {
- base::AutoLock lock(lock_);
- return now_;
-}
-
-void VirtualTimeDomain::RequestWakeup(base::TimeTicks now,
- base::TimeDelta delay) {
- // We don't need to do anything here because the caller of AdvanceTo is
- // responsible for calling TaskQueueManager::MaybeScheduleImmediateWork if
- // needed.
-}
-
-bool VirtualTimeDomain::MaybeAdvanceTime() {
- return false;
-}
-
-void VirtualTimeDomain::AsValueIntoInternal(
- base::trace_event::TracedValue* state) const {}
-
-void VirtualTimeDomain::AdvanceTo(base::TimeTicks now) {
- base::AutoLock lock(lock_);
- DCHECK_GE(now, now_);
- now_ = now;
-}
-
-void VirtualTimeDomain::RequestDoWork() {
- task_queue_manager_->MaybeScheduleImmediateWork(FROM_HERE);
-}
-
-const char* VirtualTimeDomain::GetName() const {
- return "VirtualTimeDomain";
-}
-
-} // namespace scheduler
« no previous file with comments | « components/scheduler/base/virtual_time_domain.h ('k') | components/scheduler/base/work_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698