| Index: ui/aura/test/ui_controls_factory_aurax11.cc
|
| diff --git a/ui/aura/test/ui_controls_factory_aurax11.cc b/ui/aura/test/ui_controls_factory_aurax11.cc
|
| index ce23851efddcee0d0934b7c45cea0d64fcd4091c..23706e329ad53bf5bb8899ff4150dd7a7f043886 100644
|
| --- a/ui/aura/test/ui_controls_factory_aurax11.cc
|
| +++ b/ui/aura/test/ui_controls_factory_aurax11.cc
|
| @@ -183,6 +183,18 @@ class UIControlsX11 : public UIControlsAura {
|
| bool SendMouseClick(MouseButton type) override {
|
| return SendMouseEvents(type, UP | DOWN);
|
| }
|
| + bool SendTouchEvents(int action, int num, int x, int y) override {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| + }
|
| + bool SendTouchEventsNotifyWhenDone(int action,
|
| + int num,
|
| + int x,
|
| + int y,
|
| + const base::Closure& task) override {
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| + }
|
| void RunClosureAfterAllPendingUIEvents(
|
| const base::Closure& closure) override {
|
| if (closure.is_null())
|
|
|