Home | History | Annotate | Download | only in local

Lines Matching defs:Task

32   // Represents an operation task (which usually wraps one FileSystemOperation).
33 class Task {
35 Task() {}
36 virtual ~Task() {}
50 static void CancelAndDelete(Task* task);
52 DISALLOW_COPY_AND_ASSIGN(Task);
63 // Runs the given |task| if no sync operation is running on any of
67 // just queues up the |task|.
69 void PostOperationTask(scoped_ptr<Task> task);
71 // Runs a next runnable task (if there's any).
75 // writable and may start a next runnable task.
94 std::list<Task*> pending_tasks_;