Index: ui/aura/window_event_dispatcher.cc |
diff --git a/ui/aura/window_event_dispatcher.cc b/ui/aura/window_event_dispatcher.cc |
index d0401efa395834e30efe12da167607cd6de9cf8d..1d2c33d08e1754eb3434402bb92eebf62dddea08 100644 |
--- a/ui/aura/window_event_dispatcher.cc |
+++ b/ui/aura/window_event_dispatcher.cc |
@@ -157,14 +157,10 @@ DispatchDetails WindowEventDispatcher::DispatchMouseExitAtPoint( |
return DispatchMouseEnterOrExit(window, event, ui::ET_MOUSE_EXITED); |
} |
-void WindowEventDispatcher::ProcessedTouchEvent(ui::TouchEvent* event, |
- Window* window, |
+void WindowEventDispatcher::ProcessedTouchEvent(Window* window, |
ui::EventResult result) { |
- // Once we've fully migrated to the eager gesture detector, we won't need to |
- // pass an event here. |
scoped_ptr<ui::GestureRecognizer::Gestures> gestures( |
- ui::GestureRecognizer::Get()->AckAsyncTouchEvent( |
- *event, result, window)); |
+ ui::GestureRecognizer::Get()->AckAsyncTouchEvent(result, window)); |
DispatchDetails details = ProcessGestures(gestures.get()); |
if (details.dispatcher_destroyed) |
return; |