Index: ash/wm/window_cycle_controller.cc |
diff --git a/ash/wm/window_cycle_controller.cc b/ash/wm/window_cycle_controller.cc |
index 31fea4e506166dec65f8deacafc5f15134bd950a..3223018ce4e0408125f8d62f84d448841011ed49 100644 |
--- a/ash/wm/window_cycle_controller.cc |
+++ b/ash/wm/window_cycle_controller.cc |
@@ -42,7 +42,7 @@ class WindowCycleEventFilter : public aura::EventFilter { |
ui::TouchEvent* event) OVERRIDE; |
virtual ui::GestureStatus PreHandleGestureEvent( |
aura::Window* target, |
- ui::GestureEventImpl* event) OVERRIDE; |
+ ui::GestureEvent* event) OVERRIDE; |
private: |
DISALLOW_COPY_AND_ASSIGN(WindowCycleEventFilter); |
}; |
@@ -80,7 +80,7 @@ ui::TouchStatus WindowCycleEventFilter::PreHandleTouchEvent( |
ui::GestureStatus WindowCycleEventFilter::PreHandleGestureEvent( |
aura::Window* target, |
- ui::GestureEventImpl* event) { |
+ ui::GestureEvent* event) { |
return ui::GESTURE_STATUS_UNKNOWN; // Not handled. |
} |