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_generic.h" | 9 #include "ui/events/gesture_detection/motion_event_generic.h" |
10 #include "ui/gfx/geometry/point_f.h" | 10 #include "ui/gfx/geometry/point_f.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 float y1, | 32 float y1, |
33 float x2, | 33 float x2, |
34 float y2); | 34 float y2); |
35 MockMotionEvent(Action action, | 35 MockMotionEvent(Action action, |
36 base::TimeTicks time, | 36 base::TimeTicks time, |
37 const std::vector<gfx::PointF>& positions); | 37 const std::vector<gfx::PointF>& positions); |
38 MockMotionEvent(const MockMotionEvent& other); | 38 MockMotionEvent(const MockMotionEvent& other); |
39 | 39 |
40 ~MockMotionEvent() override; | 40 ~MockMotionEvent() override; |
41 | 41 |
42 // MotionEvent methods. | |
43 scoped_ptr<MotionEvent> Clone() const override; | |
44 scoped_ptr<MotionEvent> Cancel() const override; | |
45 | |
46 // Utility methods. | 42 // Utility methods. |
47 void PressPoint(float x, float y); | 43 void PressPoint(float x, float y); |
48 void MovePoint(size_t index, float x, float y); | 44 void MovePoint(size_t index, float x, float y); |
49 void ReleasePoint(); | 45 void ReleasePoint(); |
50 void CancelPoint(); | 46 void CancelPoint(); |
51 void SetTouchMajor(float new_touch_major); | 47 void SetTouchMajor(float new_touch_major); |
52 void SetRawOffset(float raw_offset_x, float raw_offset_y); | 48 void SetRawOffset(float raw_offset_x, float raw_offset_y); |
53 void SetToolType(size_t index, ToolType tool_type); | 49 void SetToolType(size_t index, ToolType tool_type); |
54 | 50 |
55 private: | 51 private: |
56 void PushPointer(float x, float y); | 52 void PushPointer(float x, float y); |
57 void ResolvePointers(); | 53 void ResolvePointers(); |
58 }; | 54 }; |
59 | 55 |
60 } // namespace test | 56 } // namespace test |
61 } // namespace ui | 57 } // namespace ui |
OLD | NEW |