diff options
Diffstat (limited to 'ui/aura/gestures/gesture_point.h')
-rw-r--r-- | ui/aura/gestures/gesture_point.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/aura/gestures/gesture_point.h b/ui/aura/gestures/gesture_point.h index a3a46db..b04ffbd 100644 --- a/ui/aura/gestures/gesture_point.h +++ b/ui/aura/gestures/gesture_point.h @@ -54,7 +54,7 @@ class GesturePoint { const gfx::Point& last_touch_position() const { return last_touch_position_; } void set_touch_id(unsigned int touch_id) { touch_id_ = touch_id; } - const unsigned int touch_id() const { return touch_id_; } + unsigned int touch_id() const { return touch_id_; } double x_delta() const { return last_touch_position_.x() - first_touch_position_.x(); |