Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(628)

Side by Side Diff: base/task_scheduler/task.h

Issue 2122543002: Replace Closure in TaskRunner::PostTask with OneShotCallback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@07_oneshot
Patch Set: fix Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/task_scheduler/sequence.cc ('k') | base/task_scheduler/task.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/pending_task.h" 13 #include "base/pending_task.h"
14 #include "base/sequenced_task_runner.h" 14 #include "base/sequenced_task_runner.h"
15 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
16 #include "base/task_scheduler/task_traits.h" 16 #include "base/task_scheduler/task_traits.h"
17 #include "base/time/time.h" 17 #include "base/time/time.h"
18 18
19 namespace base { 19 namespace base {
20 namespace internal { 20 namespace internal {
21 21
22 // A task is a unit of work inside the task scheduler. Support for tracing and 22 // A task is a unit of work inside the task scheduler. Support for tracing and
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| is metadata about the task. |delay| is a delay that must 26 // to run. |traits| is metadata about the task. |delay| is a delay that must
27 // expire before the Task runs. 27 // expire before the Task runs.
28 Task(const tracked_objects::Location& posted_from, 28 Task(const tracked_objects::Location& posted_from,
29 const Closure& task, 29 OnceClosure task,
30 const TaskTraits& traits, 30 const TaskTraits& traits,
31 const TimeDelta& delay); 31 const TimeDelta& delay);
32 ~Task(); 32 ~Task();
33 33
34 // The TaskTraits of this task. 34 // The TaskTraits of this task.
35 const TaskTraits traits; 35 const TaskTraits traits;
36 36
37 // The time at which the task was inserted in its sequence. For an undelayed 37 // The time at which the task was inserted in its sequence. For an undelayed
38 // task, this happens at post time. For a delayed task, this happens some 38 // task, this happens at post time. For a delayed task, this happens some
39 // time after the task's delay has expired. If the task hasn't been inserted 39 // time after the task's delay has expired. If the task hasn't been inserted
(...skipping 15 matching lines...) Expand all
55 private: 55 private:
56 // Disallow copies to make sure no unnecessary ref-bumps are incurred. Making 56 // Disallow copies to make sure no unnecessary ref-bumps are incurred. Making
57 // it move-only would be an option, but isn't necessary for now. 57 // it move-only would be an option, but isn't necessary for now.
58 DISALLOW_COPY_AND_ASSIGN(Task); 58 DISALLOW_COPY_AND_ASSIGN(Task);
59 }; 59 };
60 60
61 } // namespace internal 61 } // namespace internal
62 } // namespace base 62 } // namespace base
63 63
64 #endif // BASE_TASK_SCHEDULER_TASK_H_ 64 #endif // BASE_TASK_SCHEDULER_TASK_H_
OLDNEW
« no previous file with comments | « base/task_scheduler/sequence.cc ('k') | base/task_scheduler/task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698