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

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

Issue 999423003: Set the unique_event_id when converting from TouchEvent to WebTouchEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Motion events Created 5 years, 9 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
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 9f537c8c140266e4f2511eaf6ef94fc8de29d4f6..be8d720b67b16d6285699f2396906a7b91ac2ade 100644
--- a/ui/events/gestures/gesture_provider_aura.h
+++ b/ui/events/gestures/gesture_provider_aura.h
@@ -31,7 +31,8 @@ class EVENTS_EXPORT GestureProviderAura : public GestureProviderClient {
bool OnTouchEvent(TouchEvent* event);
void OnAsyncTouchEventAck(bool event_consumed);
- void OnSyncTouchEventAck(const uint64 unique_event_id, bool event_consumed);
+ void OnSyncTouchEventAck(const uint64 unique_touch_event_id,
jdduke (slow) 2015/04/09 15:40:35 I don't think we need the "touch_" addition here.
+ bool event_consumed);
const MotionEventAura& pointer_state() { return pointer_state_; }
ScopedVector<GestureEvent>* GetAndResetPendingGestures();

Powered by Google App Engine
This is Rietveld 408576698