| Index: ash/wm/window_cycle_controller.cc
|
| diff --git a/ash/wm/window_cycle_controller.cc b/ash/wm/window_cycle_controller.cc
|
| index ab827b037e10a83aa7fb5acccafdc048dbaeaa62..09431cf5a65c5772a106fd08d8751318ae32b46a 100644
|
| --- a/ash/wm/window_cycle_controller.cc
|
| +++ b/ash/wm/window_cycle_controller.cc
|
| @@ -27,6 +27,9 @@ class WindowCycleEventFilter : public aura::EventFilter {
|
| aura::MouseEvent* event) OVERRIDE;
|
| virtual ui::TouchStatus PreHandleTouchEvent(aura::Window* target,
|
| aura::TouchEvent* event) OVERRIDE;
|
| + virtual ui::GestureStatus PreHandleGestureEvent(
|
| + aura::Window* target,
|
| + aura::GestureEvent* event) OVERRIDE;
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(WindowCycleEventFilter);
|
| };
|
| @@ -63,6 +66,12 @@ ui::TouchStatus WindowCycleEventFilter::PreHandleTouchEvent(
|
| return ui::TOUCH_STATUS_UNKNOWN; // Not handled.
|
| }
|
|
|
| +ui::GestureStatus WindowCycleEventFilter::PreHandleGestureEvent(
|
| + aura::Window* target,
|
| + aura::GestureEvent* event) {
|
| + return ui::GESTURE_STATUS_UNKNOWN; // Not handled.
|
| +}
|
| +
|
| //////////////////////////////////////////////////////////////////////////////
|
| // WindowCycleController, public:
|
|
|
|
|