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

Unified Diff: components/scheduler/child/web_task_runner_impl.cc

Issue 1373503002: Fix the drift in repeating timers (try #2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename some variables and add a todo Created 5 years, 3 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
Index: components/scheduler/child/web_task_runner_impl.cc
diff --git a/components/scheduler/child/web_task_runner_impl.cc b/components/scheduler/child/web_task_runner_impl.cc
index e108fc2b21ee5f46a9f2cdd72e4ac640c866f9ae..b4794a4c545b7ddcb734c69160c966a0a2675041 100644
--- a/components/scheduler/child/web_task_runner_impl.cc
+++ b/components/scheduler/child/web_task_runner_impl.cc
@@ -28,17 +28,6 @@ void WebTaskRunnerImpl::postTask(const blink::WebTraceLocation& web_location,
void WebTaskRunnerImpl::postDelayedTask(
const blink::WebTraceLocation& web_location,
blink::WebTaskRunner::Task* task,
- long long delayMs) {
- tracked_objects::Location location(web_location.functionName(),
- web_location.fileName(), -1, nullptr);
- task_runner_->PostDelayedTask(
- location, base::Bind(&blink::WebTaskRunner::Task::run, base::Owned(task)),
- base::TimeDelta::FromMilliseconds(delayMs));
-}
-
-void WebTaskRunnerImpl::postDelayedTask(
- const blink::WebTraceLocation& web_location,
- blink::WebTaskRunner::Task* task,
double delayMs) {
tracked_objects::Location location(web_location.functionName(),
web_location.fileName(), -1, nullptr);
« no previous file with comments | « components/scheduler/child/web_task_runner_impl.h ('k') | third_party/WebKit/Source/core/dom/ScriptRunnerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698