| Index: base/pending_task.h
|
| diff --git a/base/pending_task.h b/base/pending_task.h
|
| index fd0b883026eb355dad7c5ccb92017a8e5a45e94b..370dcd39199e557793027897eba87d5006c8af7a 100644
|
| --- a/base/pending_task.h
|
| +++ b/base/pending_task.h
|
| @@ -19,14 +19,16 @@ namespace base {
|
| // for use by classes that queue and execute tasks.
|
| struct BASE_EXPORT PendingTask : public TrackingInfo {
|
| PendingTask(const tracked_objects::Location& posted_from,
|
| - const Closure& task);
|
| + Closure task);
|
| PendingTask(const tracked_objects::Location& posted_from,
|
| - const Closure& task,
|
| + Closure task,
|
| TimeTicks delayed_run_time,
|
| bool nestable);
|
| - PendingTask(const PendingTask& other);
|
| + PendingTask(PendingTask&& other);
|
| ~PendingTask();
|
|
|
| + PendingTask& operator=(PendingTask&& other);
|
| +
|
| // Used to support sorting.
|
| bool operator<(const PendingTask& other) const;
|
|
|
|
|