| Index: ash/test/ui_controls_factory_ash.cc
|
| diff --git a/ash/test/ui_controls_factory_ash.cc b/ash/test/ui_controls_factory_ash.cc
|
| index a5afa55241d22bb6b612fe24da5e818a88cd12c8..30f344a405b9ab9b789877f6f618aca124504d35 100644
|
| --- a/ash/test/ui_controls_factory_ash.cc
|
| +++ b/ash/test/ui_controls_factory_ash.cc
|
| @@ -117,6 +117,20 @@ class UIControlsAsh : public UIControlsAura {
|
| return ui_controls && ui_controls->SendMouseClick(type);
|
| }
|
|
|
| + 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 {
|
| UIControlsAura* ui_controls =
|
|
|