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

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

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/scheduler/base/time_domain_unittest.cc ('k') | components/scheduler/base/virtual_time_domain.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/scheduler/base/virtual_time_domain.h
diff --git a/components/scheduler/base/virtual_time_domain.h b/components/scheduler/base/virtual_time_domain.h
new file mode 100644
index 0000000000000000000000000000000000000000..2e384144d4c20918ca08cb3ffeb1c4bc6a080389
--- /dev/null
+++ b/components/scheduler/base/virtual_time_domain.h
@@ -0,0 +1,45 @@
+// 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.
+
+#ifndef COMPONENTS_SCHEDULER_BASE_VIRTUAL_TIME_DOMAIN_H_
+#define COMPONENTS_SCHEDULER_BASE_VIRTUAL_TIME_DOMAIN_H_
+
+#include "base/callback.h"
+#include "base/macros.h"
+#include "components/scheduler/base/time_domain.h"
+#include "components/scheduler/scheduler_export.h"
+
+namespace scheduler {
+class TaskQueueManagerDelegate;
+
+class SCHEDULER_EXPORT VirtualTimeDomain : public TimeDomain {
+ public:
+ VirtualTimeDomain(base::TimeTicks initial_time);
+
+ // TimeDomain implementation:
+ LazyNow CreateLazyNow() override;
+ bool MaybeAdvanceTime() override;
+ const char* GetName() const override;
+
+ // Advances this time domain to |now|. NOTE |now| is supposed to be
+ // monotonically increasing.
+ void AdvanceTo(base::TimeTicks now);
+
+ protected:
+ void RequestWakeup(base::TimeDelta delay) override;
+ void AsValueIntoInternal(
+ base::trace_event::TracedValue* state) const override;
+
+ private:
+ mutable base::Lock lock_; // Protects |now_|.
+ base::TimeTicks now_;
+
+ ~VirtualTimeDomain() override;
+
+ DISALLOW_COPY_AND_ASSIGN(VirtualTimeDomain);
+};
+
+} // namespace scheduler
+
+#endif // COMPONENTS_SCHEDULER_BASE_VIRTUAL_TIME_DOMAIN_H_
« no previous file with comments | « components/scheduler/base/time_domain_unittest.cc ('k') | components/scheduler/base/virtual_time_domain.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698