Index: ui/events/gesture_detection/touch_disposition_gesture_filter.cc |
diff --git a/ui/events/gesture_detection/touch_disposition_gesture_filter.cc b/ui/events/gesture_detection/touch_disposition_gesture_filter.cc |
index a64c1b61fc945856a30d23b79c2b1bcd898193e9..7f03b2d436c001773bbc7d542af7dd2157b060f0 100644 |
--- a/ui/events/gesture_detection/touch_disposition_gesture_filter.cc |
+++ b/ui/events/gesture_detection/touch_disposition_gesture_filter.cc |
@@ -84,6 +84,10 @@ DispositionHandlingInfo GetDispositionHandlingInfo(EventType type) { |
return Info(RT_CURRENT, ET_GESTURE_PINCH_BEGIN); |
case ET_GESTURE_PINCH_END: |
return Info(RT_NONE, ET_GESTURE_PINCH_BEGIN); |
+ case ET_GESTURE_BEGIN: |
+ return Info(RT_START); |
+ case ET_GESTURE_END: |
+ return Info(RT_NONE, ET_GESTURE_BEGIN); |
default: |
break; |
} |