| Index: ui/base/test/ui_controls.h
|
| diff --git a/ui/base/test/ui_controls.h b/ui/base/test/ui_controls.h
|
| index 4fc54abb126c56a822c587540300e742c586f143..cbf3af2185e15568f6f3027ba3b93c358b8ed1f5 100644
|
| --- a/ui/base/test/ui_controls.h
|
| +++ b/ui/base/test/ui_controls.h
|
| @@ -80,6 +80,8 @@ enum MouseButtonState {
|
| DOWN = 2
|
| };
|
|
|
| +enum TouchType { PRESS = 1, RELEASE = 2, MOVE = 3 };
|
| +
|
| // Sends a mouse down and/or up message. The click will be sent to wherever
|
| // the cursor currently is, so be sure to move the cursor before calling this
|
| // (and be sure the cursor has arrived!).
|
| @@ -91,6 +93,8 @@ bool SendMouseEventsNotifyWhenDone(MouseButton type,
|
| // Same as SendMouseEvents with UP | DOWN.
|
| bool SendMouseClick(MouseButton type);
|
|
|
| +bool SendTouchEvents(int action, int num, long x, long y);
|
| +
|
| #if defined(TOOLKIT_VIEWS)
|
| // Runs |closure| after processing all pending ui events.
|
| void RunClosureAfterAllPendingUIEvents(const base::Closure& closure);
|
|
|