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

Side by Side Diff: base/pending_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/message_loop/message_pump_perftest.cc ('k') | base/pending_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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_PENDING_TASK_H_ 5 #ifndef BASE_PENDING_TASK_H_
6 #define BASE_PENDING_TASK_H_ 6 #define BASE_PENDING_TASK_H_
7 7
8 #include <queue> 8 #include <queue>
9 9
10 #include "base/base_export.h" 10 #include "base/base_export.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 #include "base/time/time.h" 13 #include "base/time/time.h"
14 #include "base/tracking_info.h" 14 #include "base/tracking_info.h"
15 15
16 namespace base { 16 namespace base {
17 17
18 // Contains data about a pending task. Stored in TaskQueue and DelayedTaskQueue 18 // Contains data about a pending task. Stored in TaskQueue and DelayedTaskQueue
19 // for use by classes that queue and execute tasks. 19 // for use by classes that queue and execute tasks.
20 struct BASE_EXPORT PendingTask : public TrackingInfo { 20 struct BASE_EXPORT PendingTask : public TrackingInfo {
21 PendingTask(const tracked_objects::Location& posted_from, 21 PendingTask(const tracked_objects::Location& posted_from,
22 Closure task); 22 OnceClosure task);
23 PendingTask(const tracked_objects::Location& posted_from, 23 PendingTask(const tracked_objects::Location& posted_from,
24 Closure task, 24 OnceClosure task,
25 TimeTicks delayed_run_time, 25 TimeTicks delayed_run_time,
26 bool nestable); 26 bool nestable);
27 PendingTask(PendingTask&& other); 27 PendingTask(PendingTask&& other);
28 ~PendingTask(); 28 ~PendingTask();
29 29
30 PendingTask& operator=(PendingTask&& other); 30 PendingTask& operator=(PendingTask&& other);
31 31
32 // Used to support sorting. 32 // Used to support sorting.
33 bool operator<(const PendingTask& other) const; 33 bool operator<(const PendingTask& other) const;
34 34
35 // The task to run. 35 // The task to run.
36 Closure task; 36 OnceClosure task;
37 37
38 // The site this PendingTask was posted from. 38 // The site this PendingTask was posted from.
39 tracked_objects::Location posted_from; 39 tracked_objects::Location posted_from;
40 40
41 // Secondary sort key for run time. 41 // Secondary sort key for run time.
42 int sequence_num; 42 int sequence_num;
43 43
44 // OK to dispatch from a nested loop. 44 // OK to dispatch from a nested loop.
45 bool nestable; 45 bool nestable;
46 46
47 // Needs high resolution timers. 47 // Needs high resolution timers.
48 bool is_high_res; 48 bool is_high_res;
49 }; 49 };
50 50
51 using TaskQueue = std::queue<PendingTask>; 51 using TaskQueue = std::queue<PendingTask>;
52 52
53 // PendingTasks are sorted by their |delayed_run_time| property. 53 // PendingTasks are sorted by their |delayed_run_time| property.
54 using DelayedTaskQueue = std::priority_queue<base::PendingTask>; 54 using DelayedTaskQueue = std::priority_queue<base::PendingTask>;
55 55
56 } // namespace base 56 } // namespace base
57 57
58 #endif // BASE_PENDING_TASK_H_ 58 #endif // BASE_PENDING_TASK_H_
OLDNEW
« no previous file with comments | « base/message_loop/message_pump_perftest.cc ('k') | base/pending_task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698