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

Unified Diff: ui/events/gestures/gesture_provider_impl.h

Issue 1287103004: Sync ui/events to chromium @ https://codereview.chromium.org/1210203002 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/events/gestures/gesture_configuration.cc ('k') | ui/events/gestures/gesture_provider_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/gestures/gesture_provider_impl.h
diff --git a/ui/events/gestures/gesture_provider_impl.h b/ui/events/gestures/gesture_provider_impl.h
index fd907e1faf031084d68cedd2d6b9be71c0e881c7..807ec2773171c5270b2d5331f01ca733ae7d9d82 100644
--- a/ui/events/gestures/gesture_provider_impl.h
+++ b/ui/events/gestures/gesture_provider_impl.h
@@ -29,8 +29,8 @@ class EVENTS_EXPORT GestureProviderImpl : public GestureProviderClient {
GestureProviderImpl(GestureProviderImplClient* client);
~GestureProviderImpl() override;
- bool OnTouchEvent(const TouchEvent& event);
- void OnTouchEventAck(bool event_consumed);
+ bool OnTouchEvent(TouchEvent* event);
+ void OnTouchEventAck(uint32 unique_event_id, bool event_consumed);
const MotionEventImpl& pointer_state() { return pointer_state_; }
ScopedVector<GestureEvent>* GetAndResetPendingGestures();
@@ -47,7 +47,6 @@ class EVENTS_EXPORT GestureProviderImpl : public GestureProviderClient {
MotionEventImpl pointer_state_;
FilteredGestureProvider filtered_gesture_provider_;
- ui::LatencyInfo last_touch_event_latency_info_;
bool handling_event_;
ScopedVector<GestureEvent> pending_gestures_;
« no previous file with comments | « ui/events/gestures/gesture_configuration.cc ('k') | ui/events/gestures/gesture_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698