| Index: ash/wm/toplevel_window_event_filter.cc
|
| diff --git a/ash/wm/toplevel_window_event_filter.cc b/ash/wm/toplevel_window_event_filter.cc
|
| index 44c0e683db5e30fd9e233b2c55048d9fa9345323..ccc7a4e0c5541d0afeade7b25fa7afe49b83082c 100644
|
| --- a/ash/wm/toplevel_window_event_filter.cc
|
| +++ b/ash/wm/toplevel_window_event_filter.cc
|
| @@ -223,6 +223,13 @@ ui::TouchStatus ToplevelWindowEventFilter::PreHandleTouchEvent(
|
| return ui::TOUCH_STATUS_UNKNOWN;
|
| }
|
|
|
| +ui::GestureStatus ToplevelWindowEventFilter::PreHandleGestureEvent(
|
| + aura::Window* target, aura::GestureEvent* event) {
|
| + // TODO(sad): Process gestures as appropriate (e.g. switch between windows,
|
| + // close window etc.)
|
| + return ui::GESTURE_STATUS_UNKNOWN;
|
| +}
|
| +
|
| void ToplevelWindowEventFilter::RunMoveLoop(aura::Window* source) {
|
| DCHECK(!in_move_loop_); // Can only handle one nested loop at a time.
|
| in_move_loop_ = true;
|
|
|