Index: ui/aura/gestures/gesture_point.h |
diff --git a/ui/aura/gestures/gesture_point.h b/ui/aura/gestures/gesture_point.h |
index 906ba487cc5d5cb2f2f44c0206a07e48342979dd..9c3d9517ee3bffa54a0c7c4746fe69cc9e1babdc 100644 |
--- a/ui/aura/gestures/gesture_point.h |
+++ b/ui/aura/gestures/gesture_point.h |
@@ -60,9 +60,9 @@ class GesturePoint { |
// A negative point_id indicates that the GesturePoint is not currently |
// associated with a touch. |
void set_point_id(int point_id) { point_id_ = point_id; } |
- const int point_id() const { return point_id_; } |
+ int point_id() const { return point_id_; } |
- const bool in_use() const { return point_id_ >= 0; } |
+ bool in_use() const { return point_id_ >= 0; } |
double x_delta() const { |
return last_touch_position_.x() - first_touch_position_.x(); |