Index: ui/events/gestures/gesture_provider_aura.h |
diff --git a/ui/events/gestures/gesture_provider_aura.h b/ui/events/gestures/gesture_provider_aura.h |
index b4a9dedf3a37d3359d5f43d0d32addd92ed32461..20167406b4943cf0c0f35b6894e2ce364ff289ac 100644 |
--- a/ui/events/gestures/gesture_provider_aura.h |
+++ b/ui/events/gestures/gesture_provider_aura.h |
@@ -36,6 +36,14 @@ class EVENTS_EXPORT GestureProviderAura : public GestureProviderClient { |
virtual void OnGestureEvent(const GestureEventData& gesture) OVERRIDE; |
private: |
+ bool IsConsideredDoubleTap(const MotionEvent& previous_down, |
+ const base::TimeTicks previous_tap_time, |
+ const MotionEvent& current_down) const; |
+ |
+ scoped_ptr<MotionEvent> current_down_event_; |
+ scoped_ptr<MotionEvent> previous_down_event_; |
+ scoped_ptr<GestureEventData> previous_tap_; |
+ |
GestureProviderAuraClient* client_; |
MotionEventAura pointer_state_; |
FilteredGestureProvider filtered_gesture_provider_; |