| 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 #include <vector> | 5 #include <vector> |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "ui/events/gesture_detection/motion_event.h" | 9 #include "ui/events/gesture_detection/motion_event.h" |
| 10 #include "ui/gfx/geometry/point_f.h" | 10 #include "ui/gfx/geometry/point_f.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 ToolType tool_types[MAX_POINTERS]; | 86 ToolType tool_types[MAX_POINTERS]; |
| 87 gfx::Vector2dF raw_offset; | 87 gfx::Vector2dF raw_offset; |
| 88 base::TimeTicks time; | 88 base::TimeTicks time; |
| 89 float touch_major; | 89 float touch_major; |
| 90 int id; | 90 int id; |
| 91 int button_state; | 91 int button_state; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 } // namespace test | 94 } // namespace test |
| 95 } // namespace ui | 95 } // namespace ui |
| OLD | NEW |