OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_TOUCH_SELECTION_TOUCH_HANDLE_H_ | 5 #ifndef UI_TOUCH_SELECTION_TOUCH_HANDLE_H_ |
6 #define UI_TOUCH_SELECTION_TOUCH_HANDLE_H_ | 6 #define UI_TOUCH_SELECTION_TOUCH_HANDLE_H_ |
7 | 7 |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/time/time.h" | 11 #include "base/time/time.h" |
11 #include "ui/events/gesture_detection/motion_event.h" | 12 #include "ui/events/gesture_detection/motion_event.h" |
12 #include "ui/gfx/geometry/point_f.h" | 13 #include "ui/gfx/geometry/point_f.h" |
13 #include "ui/gfx/geometry/rect_f.h" | 14 #include "ui/gfx/geometry/rect_f.h" |
14 #include "ui/gfx/geometry/vector2d_f.h" | 15 #include "ui/gfx/geometry/vector2d_f.h" |
15 #include "ui/touch_selection/touch_handle_orientation.h" | 16 #include "ui/touch_selection/touch_handle_orientation.h" |
16 #include "ui/touch_selection/touch_selection_draggable.h" | 17 #include "ui/touch_selection/touch_selection_draggable.h" |
17 #include "ui/touch_selection/ui_touch_selection_export.h" | 18 #include "ui/touch_selection/ui_touch_selection_export.h" |
18 | 19 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 bool mirror_vertical_; | 163 bool mirror_vertical_; |
163 bool mirror_horizontal_; | 164 bool mirror_horizontal_; |
164 float handle_horizontal_padding_; | 165 float handle_horizontal_padding_; |
165 | 166 |
166 DISALLOW_COPY_AND_ASSIGN(TouchHandle); | 167 DISALLOW_COPY_AND_ASSIGN(TouchHandle); |
167 }; | 168 }; |
168 | 169 |
169 } // namespace ui | 170 } // namespace ui |
170 | 171 |
171 #endif // UI_TOUCH_SELECTION_TOUCH_HANDLE_H_ | 172 #endif // UI_TOUCH_SELECTION_TOUCH_HANDLE_H_ |
OLD | NEW |