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_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ | 5 #ifndef UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ |
6 #define UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ | 6 #define UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "ui/events/event.h" | 9 #include "ui/events/event.h" |
10 #include "ui/events/events_export.h" | 10 #include "ui/events/events_export.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 bool IsConsideredDoubleTap(const GestureEventData& previous_tap, | 40 bool IsConsideredDoubleTap(const GestureEventData& previous_tap, |
41 const GestureEventData& current_tap) const; | 41 const GestureEventData& current_tap) const; |
42 | 42 |
43 scoped_ptr<GestureEventData> previous_tap_; | 43 scoped_ptr<GestureEventData> previous_tap_; |
44 | 44 |
45 GestureProviderAuraClient* client_; | 45 GestureProviderAuraClient* client_; |
46 MotionEventAura pointer_state_; | 46 MotionEventAura pointer_state_; |
47 FilteredGestureProvider filtered_gesture_provider_; | 47 FilteredGestureProvider filtered_gesture_provider_; |
48 | 48 |
49 int last_touch_event_flags_; | 49 int last_touch_event_flags_; |
| 50 ui::LatencyInfo last_touch_event_latency_info_; |
50 bool handling_event_; | 51 bool handling_event_; |
51 ScopedVector<GestureEvent> pending_gestures_; | 52 ScopedVector<GestureEvent> pending_gestures_; |
52 | 53 |
53 DISALLOW_COPY_AND_ASSIGN(GestureProviderAura); | 54 DISALLOW_COPY_AND_ASSIGN(GestureProviderAura); |
54 }; | 55 }; |
55 | 56 |
56 } // namespace ui | 57 } // namespace ui |
57 | 58 |
58 #endif // UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ | 59 #endif // UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ |
OLD | NEW |