Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: ui/events/gestures/gesture_provider_aura.h

Issue 309823002: Pass ui::LatencyInfo correct with unified gesture detector on Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 28 matching lines...) Expand all
39 bool IsConsideredDoubleTap(const GestureEventData& previous_tap, 39 bool IsConsideredDoubleTap(const GestureEventData& previous_tap,
40 const GestureEventData& current_tap) const; 40 const GestureEventData& current_tap) const;
41 41
42 scoped_ptr<GestureEventData> previous_tap_; 42 scoped_ptr<GestureEventData> previous_tap_;
43 43
44 GestureProviderAuraClient* client_; 44 GestureProviderAuraClient* client_;
45 MotionEventAura pointer_state_; 45 MotionEventAura pointer_state_;
46 FilteredGestureProvider filtered_gesture_provider_; 46 FilteredGestureProvider filtered_gesture_provider_;
47 47
48 int last_touch_event_flags_; 48 int last_touch_event_flags_;
49 ui::LatencyInfo last_touch_event_latency_info_;
49 50
50 DISALLOW_COPY_AND_ASSIGN(GestureProviderAura); 51 DISALLOW_COPY_AND_ASSIGN(GestureProviderAura);
51 }; 52 };
52 53
53 } // namespace ui 54 } // namespace ui
54 55
55 #endif // UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_ 56 #endif // UI_EVENTS_GESTURE_DETECTION_UI_GESTURE_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698