summaryrefslogtreecommitdiff
path: root/base/task_runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/task_runner.h')
-rw-r--r--base/task_runner.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/base/task_runner.h b/base/task_runner.h
index be3039d372..d6a387109a 100644
--- a/base/task_runner.h
+++ b/base/task_runner.h
@@ -61,8 +61,7 @@ class BASE_EXPORT TaskRunner
// will not be run.
//
// Equivalent to PostDelayedTask(from_here, task, 0).
- bool PostTask(const tracked_objects::Location& from_here,
- const Closure& task);
+ bool PostTask(const tracked_objects::Location& from_here, Closure task);
// Like PostTask, but tries to run the posted task only after
// |delay_ms| has passed.
@@ -70,7 +69,7 @@ class BASE_EXPORT TaskRunner
// It is valid for an implementation to ignore |delay_ms|; that is,
// to have PostDelayedTask behave the same as PostTask.
virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
- const Closure& task,
+ Closure task,
base::TimeDelta delay) = 0;
// Returns true if the current thread is a thread on which a task