Home | History | Annotate | Download | only in automation

Lines Matching refs:Task

27   EventWaiter(Task* task, GdkEventType type, int count)
28 : task_(task),
59 Task* task_;
147 Task* task) {
156 // This object will delete itself after running |task|.
157 new EventWaiter(task, GDK_KEY_RELEASE, release_count);
172 bool SendMouseMoveNotifyWhenDone(long x, long y, Task* task) {
175 // mouse move. Posting the task to the message loop hopefully guarantees
176 // the pointer has moved before task is run (although it may not run it as
178 MessageLoop::current()->PostTask(FROM_HERE, task);
231 bool SendMouseEventsNotifyWhenDone(MouseButton type, int state, Task* task) {
244 new EventWaiter(task, wait_type, 1);
254 int state, Task* task) {
258 new ClickTask(button, state, task));
264 Task* task) {
268 new ClickTask(button, state, task));