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

Unified Diff: ui/events/gesture_detection/gesture_event_data.h

Issue 227743007: ui::GestureProvider gives GestureEventData the number of touch points. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address jdduke final nits. Created 6 years, 8 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
« no previous file with comments | « no previous file | ui/events/gesture_detection/gesture_event_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/gesture_detection/gesture_event_data.h
diff --git a/ui/events/gesture_detection/gesture_event_data.h b/ui/events/gesture_detection/gesture_event_data.h
index f7f57a8b7defb37921059aaa58d3caae82c43ad3..4953284c76b1093002fbe3b804c788ddc91d1468 100644
--- a/ui/events/gesture_detection/gesture_event_data.h
+++ b/ui/events/gesture_detection/gesture_event_data.h
@@ -20,13 +20,15 @@ struct GESTURE_DETECTION_EXPORT GestureEventData {
base::TimeTicks time,
float x,
float y,
+ int touch_point_count,
const GestureEventDetails& details);
GestureEventData(EventType type,
int motion_event_id,
base::TimeTicks time,
float x,
- float y);
+ float y,
+ int touch_point_count);
EventType type;
int motion_event_id;
« no previous file with comments | « no previous file | ui/events/gesture_detection/gesture_event_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698