| Index: base/task_scheduler/task.h
|
| diff --git a/base/task_scheduler/task.h b/base/task_scheduler/task.h
|
| index c5b9bdb53bdc8b7a51c4a2ed20df403f30fe55d0..1f3b775a231903bbb2fcdb681ce7da9999a51b59 100644
|
| --- a/base/task_scheduler/task.h
|
| +++ b/base/task_scheduler/task.h
|
| @@ -6,7 +6,7 @@
|
| #define BASE_TASK_SCHEDULER_TASK_H_
|
|
|
| #include "base/base_export.h"
|
| -#include "base/callback_forward.h"
|
| +#include "base/callback.h"
|
| #include "base/location.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -28,7 +28,7 @@ struct BASE_EXPORT Task : public PendingTask {
|
| // behavior in |traits| is BLOCK_SHUTDOWN, the shutdown behavior is
|
| // automatically adjusted to SKIP_ON_SHUTDOWN.
|
| Task(const tracked_objects::Location& posted_from,
|
| - const Closure& task,
|
| + Closure task,
|
| const TaskTraits& traits,
|
| TimeDelta delay);
|
| ~Task();
|
|
|