Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(512)

Unified Diff: ui/events/gesture_detection/touch_disposition_gesture_filter.cc

Issue 302463004: Implementing the dispatch of the swipe gesture for one-finger touch swipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implementing review feedback. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 e1bbb0d253b678c671bbd7e90e1800b70a82a2ee..311cf9b40618a15224b1840e076cda78964d3bc2 100644
--- a/ui/events/gesture_detection/touch_disposition_gesture_filter.cc
+++ b/ui/events/gesture_detection/touch_disposition_gesture_filter.cc
@@ -100,7 +100,7 @@ DispositionHandlingInfo GetDispositionHandlingInfo(EventType type) {
return Info(RT_START);
case ET_GESTURE_END:
return Info(RT_NONE, ET_GESTURE_BEGIN);
- case ET_GESTURE_MULTIFINGER_SWIPE:
+ case ET_GESTURE_SWIPE:
return Info(RT_START, ET_GESTURE_SCROLL_BEGIN);
case ET_GESTURE_TWO_FINGER_TAP:
return Info(RT_START);

Powered by Google App Engine
This is Rietveld 408576698