Home | History | Annotate | Download | only in base

Lines Matching refs:Task

12 #include "base/task.h"
15 // the Run method. A task queue is itself a Task so that it can be placed in a
16 // message loop or another task queue.
17 class BASE_API TaskQueue : public Task {
22 // Push the specified task onto the queue. When the queue is run, the tasks
25 // This method takes ownership of |task| and will delete task after it is run
27 void Push(Task* task);
41 std::deque<Task*> queue_;