| 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 1eb948328384477e414ee08af34b21100ae97e85..35eb41e2c778516fa371f29369ec80aa2bb92f21 100644
|
| --- a/ui/events/gesture_detection/gesture_event_data.h
|
| +++ b/ui/events/gesture_detection/gesture_event_data.h
|
| @@ -20,16 +20,11 @@ struct GESTURE_DETECTION_EXPORT GestureEventData {
|
| base::TimeTicks time,
|
| float x,
|
| float y,
|
| - int touch_point_count,
|
| - const gfx::RectF& bounding_box);
|
| -
|
| - GestureEventData(EventType type,
|
| - int motion_event_id,
|
| - base::TimeTicks time,
|
| - float x,
|
| - float y,
|
| - int touch_point_count,
|
| + float raw_x,
|
| + float raw_y,
|
| + size_t touch_point_count,
|
| const gfx::RectF& bounding_box);
|
| + GestureEventData(EventType type, const GestureEventData&);
|
|
|
| EventType type() const { return details.type(); }
|
|
|
| @@ -38,6 +33,8 @@ struct GESTURE_DETECTION_EXPORT GestureEventData {
|
| base::TimeTicks time;
|
| float x;
|
| float y;
|
| + float raw_x;
|
| + float raw_y;
|
|
|
| private:
|
| friend class GestureEventDataPacket;
|
|
|