Index: ui/events/gesture_detection/gesture_provider.cc |
diff --git a/ui/events/gesture_detection/gesture_provider.cc b/ui/events/gesture_detection/gesture_provider.cc |
index 55bc37010402aad0021a62760f0a07d5d378ca89..8b9000ddad1e27d906fb1759a3a392c85ab0e372 100644 |
--- a/ui/events/gesture_detection/gesture_provider.cc |
+++ b/ui/events/gesture_detection/gesture_provider.cc |
@@ -385,10 +385,8 @@ class GestureProvider::GestureListenerImpl |
const MotionEvent& e2, |
float velocity_x, |
float velocity_y) OVERRIDE { |
- GestureEventDetails swipe_details( |
- ET_GESTURE_MULTIFINGER_SWIPE, velocity_x, velocity_y); |
- provider_->Send( |
- CreateGesture(ET_GESTURE_MULTIFINGER_SWIPE, e2, swipe_details)); |
+ GestureEventDetails swipe_details(ET_GESTURE_SWIPE, velocity_x, velocity_y); |
+ provider_->Send(CreateGesture(ET_GESTURE_SWIPE, e2, swipe_details)); |
return true; |
} |