| Index: ui/events/event.cc
|
| diff --git a/ui/events/event.cc b/ui/events/event.cc
|
| index 690cf47316e9764239a3b13be576188cbede2814..23f03f91bf76438dfcab40b17a31ad20c9582c38 100644
|
| --- a/ui/events/event.cc
|
| +++ b/ui/events/event.cc
|
| @@ -1277,13 +1277,15 @@ GestureEvent::GestureEvent(float x,
|
| float y,
|
| int flags,
|
| base::TimeTicks time_stamp,
|
| - const GestureEventDetails& details)
|
| + const GestureEventDetails& details,
|
| + uint32_t unique_touch_event_id)
|
| : LocatedEvent(details.type(),
|
| gfx::PointF(x, y),
|
| gfx::PointF(x, y),
|
| time_stamp,
|
| flags | EF_FROM_TOUCH),
|
| - details_(details) {}
|
| + details_(details),
|
| + unique_touch_event_id_(unique_touch_event_id) {}
|
|
|
| GestureEvent::~GestureEvent() {
|
| }
|
|
|