| 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);
|
|
|