| Index: ui/base/test/ui_controls_aura.cc
|
| diff --git a/ui/base/test/ui_controls_aura.cc b/ui/base/test/ui_controls_aura.cc
|
| index c8367ab803997d1303a8d92c110686a180e1b538..e7c18b0c6283dd19121a1d0d0c59203bc111fd39 100644
|
| --- a/ui/base/test/ui_controls_aura.cc
|
| +++ b/ui/base/test/ui_controls_aura.cc
|
| @@ -75,6 +75,16 @@ bool SendMouseClick(MouseButton type) {
|
| return instance_->SendMouseClick(type);
|
| }
|
|
|
| +// static
|
| +bool SendTouchEventsNotifyWhenDone(int action,
|
| + int num,
|
| + int x,
|
| + int y,
|
| + const base::Closure& task) {
|
| + CHECK(g_ui_controls_enabled);
|
| + return instance_->SendTouchEventsNotifyWhenDone(action, num, x, y, task);
|
| +}
|
| +
|
| // static
|
| void RunClosureAfterAllPendingUIEvents(const base::Closure& closure) {
|
| instance_->RunClosureAfterAllPendingUIEvents(closure);
|
|
|