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

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

Issue 10824158: Pass tap count (1 or 2) with tap gesture events (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build Created 8 years, 5 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/base/gestures/gesture_sequence.h
diff --git a/ui/base/gestures/gesture_sequence.h b/ui/base/gestures/gesture_sequence.h
index 91281396ef6a80d51100f1ce07498886b946a9ae..bf39165fa0fb14ca0b7dbca6bf90119e3fc1f604 100644
--- a/ui/base/gestures/gesture_sequence.h
+++ b/ui/base/gestures/gesture_sequence.h
@@ -90,7 +90,8 @@ class UI_EXPORT GestureSequence {
void AppendTapDownGestureEvent(const GesturePoint& point, Gestures* gestures);
void AppendBeginGestureEvent(const GesturePoint& point, Gestures* gestures);
void AppendEndGestureEvent(const GesturePoint& point, Gestures* gestures);
- void AppendClickGestureEvent(const GesturePoint& point, Gestures* gestures);
+ void AppendClickGestureEvent(const GesturePoint& point, int tap_count,
+ Gestures* gestures);
sadrul 2012/08/03 01:50:33 each param should be in its own line
Rick Byers 2012/08/03 14:51:54 Done.
void AppendDoubleClickGestureEvent(const GesturePoint& point,
Gestures* gestures);
void AppendLongPressGestureEvent();

Powered by Google App Engine
This is Rietveld 408576698