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

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

Issue 2158993002: (Merge) Fix a bug that could occasionaly cause setInterval to stop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 years, 5 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/time_domain.h ('k') | components/scheduler/base/virtual_time_domain.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/scheduler/base/time_domain_unittest.cc
diff --git a/components/scheduler/base/time_domain_unittest.cc b/components/scheduler/base/time_domain_unittest.cc
index 7f4228835e8db42545d32242df22987071e34853..39fc93997a1f55e1f601ce8fda36896c05343c5c 100644
--- a/components/scheduler/base/time_domain_unittest.cc
+++ b/components/scheduler/base/time_domain_unittest.cc
@@ -41,11 +41,6 @@ class MockTimeDomain : public TimeDomain {
LazyNow CreateLazyNow() const override { return LazyNow(now_); }
base::TimeTicks Now() const override { return now_; }
- base::TimeTicks ComputeDelayedRunTime(base::TimeTicks time_domain_now,
- base::TimeDelta delay) const override {
- return time_domain_now + delay;
- }
-
void AsValueIntoInternal(
base::trace_event::TracedValue* state) const override {}
« no previous file with comments | « components/scheduler/base/time_domain.h ('k') | components/scheduler/base/virtual_time_domain.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698