| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_TASK_SCHEDULER_TASK_H_ | 5 #ifndef BASE_TASK_SCHEDULER_TASK_H_ |
| 6 #define BASE_TASK_SCHEDULER_TASK_H_ | 6 #define BASE_TASK_SCHEDULER_TASK_H_ |
| 7 | 7 |
| 8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
| 9 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // profiling inherited from PendingTask. | 23 // profiling inherited from PendingTask. |
| 24 struct BASE_EXPORT Task : public PendingTask { | 24 struct BASE_EXPORT Task : public PendingTask { |
| 25 // |posted_from| is the site the task was posted from. |task| is the closure | 25 // |posted_from| is the site the task was posted from. |task| is the closure |
| 26 // to run. |traits_in| is metadata about the task. |delay| is a delay that | 26 // to run. |traits_in| is metadata about the task. |delay| is a delay that |
| 27 // must expire before the Task runs. If |delay| is non-zero and the shutdown | 27 // must expire before the Task runs. If |delay| is non-zero and the shutdown |
| 28 // behavior in |traits| is BLOCK_SHUTDOWN, the shutdown behavior is | 28 // behavior in |traits| is BLOCK_SHUTDOWN, the shutdown behavior is |
| 29 // automatically adjusted to SKIP_ON_SHUTDOWN. | 29 // automatically adjusted to SKIP_ON_SHUTDOWN. |
| 30 Task(const tracked_objects::Location& posted_from, | 30 Task(const tracked_objects::Location& posted_from, |
| 31 const Closure& task, | 31 const Closure& task, |
| 32 const TaskTraits& traits, | 32 const TaskTraits& traits, |
| 33 const TimeDelta& delay); | 33 TimeDelta delay); |
| 34 ~Task(); | 34 ~Task(); |
| 35 | 35 |
| 36 // The TaskTraits of this task. | 36 // The TaskTraits of this task. |
| 37 const TaskTraits traits; | 37 const TaskTraits traits; |
| 38 | 38 |
| 39 // The delay that must expire before the task runs. | 39 // The delay that must expire before the task runs. |
| 40 const TimeDelta delay; | 40 const TimeDelta delay; |
| 41 | 41 |
| 42 // The time at which the task was inserted in its sequence. For an undelayed | 42 // The time at which the task was inserted in its sequence. For an undelayed |
| 43 // task, this happens at post time. For a delayed task, this happens some | 43 // task, this happens at post time. For a delayed task, this happens some |
| (...skipping 16 matching lines...) Expand all Loading... |
| 60 private: | 60 private: |
| 61 // Disallow copies to make sure no unnecessary ref-bumps are incurred. Making | 61 // Disallow copies to make sure no unnecessary ref-bumps are incurred. Making |
| 62 // it move-only would be an option, but isn't necessary for now. | 62 // it move-only would be an option, but isn't necessary for now. |
| 63 DISALLOW_COPY_AND_ASSIGN(Task); | 63 DISALLOW_COPY_AND_ASSIGN(Task); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 } // namespace internal | 66 } // namespace internal |
| 67 } // namespace base | 67 } // namespace base |
| 68 | 68 |
| 69 #endif // BASE_TASK_SCHEDULER_TASK_H_ | 69 #endif // BASE_TASK_SCHEDULER_TASK_H_ |
| OLD | NEW |