| Index: ui/aura/gestures/gesture_point.cc
|
| diff --git a/ui/aura/gestures/gesture_point.cc b/ui/aura/gestures/gesture_point.cc
|
| index be72be1c5c884bd421cbc67aeb4f5f7da88c93fd..a531f706e458d9eb7c9b86bbb2137b53c55f58f2 100644
|
| --- a/ui/aura/gestures/gesture_point.cc
|
| +++ b/ui/aura/gestures/gesture_point.cc
|
| @@ -27,7 +27,8 @@ GesturePoint::GesturePoint()
|
| : first_touch_time_(0.0),
|
| last_touch_time_(0.0),
|
| last_tap_time_(0.0),
|
| - velocity_calculator_(kBufferedPoints) {
|
| + velocity_calculator_(kBufferedPoints),
|
| + point_id_(-1) {
|
| }
|
|
|
| GesturePoint::~GesturePoint() {}
|
| @@ -35,6 +36,7 @@ GesturePoint::~GesturePoint() {}
|
| void GesturePoint::Reset() {
|
| first_touch_time_ = last_touch_time_ = 0.0;
|
| velocity_calculator_.ClearHistory();
|
| + point_id_ = -1;
|
| }
|
|
|
| void GesturePoint::UpdateValues(const TouchEvent& event) {
|
|
|