Home | History | Annotate | Download | only in base

Lines Matching refs:Run

14 // A TaskQueue is a queue of tasks waiting to be run.  To run the tasks, call
15 // the Run method. A task queue is itself a Task so that it can be placed in a
22 // Push the specified task onto the queue. When the queue is run, the tasks
23 // will be run in the order they are pushed.
25 // This method takes ownership of |task| and will delete task after it is run
26 // (or when the TaskQueue is destroyed, if we never got a chance to run it).
35 // Run all the tasks in the queue. New tasks pushed onto the queue during
36 // a run will be run next time |Run| is called.
37 virtual void Run();
40 // The list of tasks we are waiting to run.