| 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 7607f08d8765a7fbc02a96f7eb471af5f813efcb..095c78846d2825614d92d2343ae123fa5db1d698 100644
|
| --- a/ui/events/gesture_detection/gesture_provider.cc
|
| +++ b/ui/events/gesture_detection/gesture_provider.cc
|
| @@ -375,10 +375,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;
|
| }
|
|
|
|
|