| Index: base/threading/sequenced_worker_pool.h
|
| diff --git a/base/threading/sequenced_worker_pool.h b/base/threading/sequenced_worker_pool.h
|
| index 0e916c8782bbfe9e0230e2ec1a73d32f0a513680..37267669037301595c44ded5f9d4e4010cdef66a 100644
|
| --- a/base/threading/sequenced_worker_pool.h
|
| +++ b/base/threading/sequenced_worker_pool.h
|
| @@ -252,7 +252,7 @@ class BASE_EXPORT SequencedWorkerPool : public TaskRunner {
|
| // Returns true if the task was posted successfully. This may fail during
|
| // shutdown regardless of the specified ShutdownBehavior.
|
| bool PostWorkerTask(const tracked_objects::Location& from_here,
|
| - const Closure& task);
|
| + OnceClosure task);
|
|
|
| // Same as PostWorkerTask but allows a delay to be specified (although doing
|
| // so changes the shutdown behavior). The task will be run after the given
|
| @@ -264,13 +264,13 @@ class BASE_EXPORT SequencedWorkerPool : public TaskRunner {
|
| // task will be guaranteed to run to completion before shutdown
|
| // (BLOCK_SHUTDOWN semantics).
|
| bool PostDelayedWorkerTask(const tracked_objects::Location& from_here,
|
| - const Closure& task,
|
| + OnceClosure task,
|
| TimeDelta delay);
|
|
|
| // Same as PostWorkerTask but allows specification of the shutdown behavior.
|
| bool PostWorkerTaskWithShutdownBehavior(
|
| const tracked_objects::Location& from_here,
|
| - const Closure& task,
|
| + OnceClosure task,
|
| WorkerShutdown shutdown_behavior);
|
|
|
| // Like PostWorkerTask above, but provides sequencing semantics. This means
|
| @@ -286,13 +286,13 @@ class BASE_EXPORT SequencedWorkerPool : public TaskRunner {
|
| // shutdown regardless of the specified ShutdownBehavior.
|
| bool PostSequencedWorkerTask(SequenceToken sequence_token,
|
| const tracked_objects::Location& from_here,
|
| - const Closure& task);
|
| + OnceClosure task);
|
|
|
| // Like PostSequencedWorkerTask above, but allows you to specify a named
|
| // token, which saves an extra call to GetNamedSequenceToken.
|
| bool PostNamedSequencedWorkerTask(const std::string& token_name,
|
| const tracked_objects::Location& from_here,
|
| - const Closure& task);
|
| + OnceClosure task);
|
|
|
| // Same as PostSequencedWorkerTask but allows a delay to be specified
|
| // (although doing so changes the shutdown behavior). The task will be run
|
| @@ -306,7 +306,7 @@ class BASE_EXPORT SequencedWorkerPool : public TaskRunner {
|
| bool PostDelayedSequencedWorkerTask(
|
| SequenceToken sequence_token,
|
| const tracked_objects::Location& from_here,
|
| - const Closure& task,
|
| + OnceClosure task,
|
| TimeDelta delay);
|
|
|
| // Same as PostSequencedWorkerTask but allows specification of the shutdown
|
| @@ -314,12 +314,12 @@ class BASE_EXPORT SequencedWorkerPool : public TaskRunner {
|
| bool PostSequencedWorkerTaskWithShutdownBehavior(
|
| SequenceToken sequence_token,
|
| const tracked_objects::Location& from_here,
|
| - const Closure& task,
|
| + OnceClosure task,
|
| WorkerShutdown shutdown_behavior);
|
|
|
| // TaskRunner implementation. Forwards to PostDelayedWorkerTask().
|
| bool PostDelayedTask(const tracked_objects::Location& from_here,
|
| - const Closure& task,
|
| + OnceClosure task,
|
| TimeDelta delay) override;
|
| bool RunsTasksOnCurrentThread() const override;
|
|
|
|
|