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

Unified Diff: ui/events/gestures/gesture_sequence.h

Issue 133273013: Consuming any touch move before SCROLL_START prevents the scroll from occuring in Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/gestures/gesture_sequence.h
diff --git a/ui/events/gestures/gesture_sequence.h b/ui/events/gestures/gesture_sequence.h
index b3255df573caf748a0fd998f9e3ae25ba76f1241..6926ff9ed0b260ea3fb2f55b2651a36b986e76fb 100644
--- a/ui/events/gestures/gesture_sequence.h
+++ b/ui/events/gestures/gesture_sequence.h
@@ -19,7 +19,11 @@ class GestureEvent;
enum GestureState {
GS_NO_GESTURE,
GS_PENDING_SYNTHETIC_CLICK,
+ // One finger is down: tap could occur, but scroll cannot
sadrul 2014/01/17 17:11:35 Mention that scroll/pinch can happen if a second t
tdresser 2014/01/17 19:48:42 Done.
GS_PENDING_SYNTHETIC_CLICK_NO_SCROLL,
+ // One finger is down: no gestures can occur until the number of active touch
+ // points changes.
+ GS_SYNTHETIC_CLICK_ABORTED,
GS_SCROLL,
GS_PINCH,
GS_PENDING_TWO_FINGER_TAP,

Powered by Google App Engine
This is Rietveld 408576698