Roll src/third_party/skia 013e9e3:42bd6bf
[chromium-blink-merge.git] / base / pending_task.h
blobfddfc868fe7dc3227df4287f9fb33752cb90f419
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
3 // found in the LICENSE file.
5 #ifndef BASE_PENDING_TASK_H_
6 #define BASE_PENDING_TASK_H_
8 #include <queue>
10 #include "base/base_export.h"
11 #include "base/callback.h"
12 #include "base/location.h"
13 #include "base/time/time.h"
14 #include "base/tracking_info.h"
16 namespace base {
18 // Contains data about a pending task. Stored in TaskQueue and DelayedTaskQueue
19 // for use by classes that queue and execute tasks.
20 struct BASE_EXPORT PendingTask : public TrackingInfo {
21 PendingTask(const tracked_objects::Location& posted_from,
22 const Closure& task);
23 PendingTask(const tracked_objects::Location& posted_from,
24 const Closure& task,
25 TimeTicks delayed_run_time,
26 bool nestable);
27 ~PendingTask();
29 // Used to support sorting.
30 bool operator<(const PendingTask& other) const;
32 // The task to run.
33 Closure task;
35 // The site this PendingTask was posted from.
36 tracked_objects::Location posted_from;
38 // Secondary sort key for run time.
39 int sequence_num;
41 // OK to dispatch from a nested loop.
42 bool nestable;
44 // Needs high resolution timers.
45 bool is_high_res;
48 // Wrapper around std::queue specialized for PendingTask which adds a Swap
49 // helper method.
50 class BASE_EXPORT TaskQueue : public std::queue<PendingTask> {
51 public:
52 void Swap(TaskQueue* queue);
55 // PendingTasks are sorted by their |delayed_run_time| property.
56 typedef std::priority_queue<base::PendingTask> DelayedTaskQueue;
58 } // namespace base
60 #endif // BASE_PENDING_TASK_H_