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

Unified Diff: ui/events/gesture_detection/touch_disposition_gesture_filter.cc

Issue 1800143002: Notify Blink about start of gesture scroll through a queued event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/gesture_detection/touch_disposition_gesture_filter.cc
diff --git a/ui/events/gesture_detection/touch_disposition_gesture_filter.cc b/ui/events/gesture_detection/touch_disposition_gesture_filter.cc
index bcf4ce64f20edc2ee1288acea7c8d73797347bed..00d5f97c85ef9beef4cc66d5c903ad91b024b7a1 100644
--- a/ui/events/gesture_detection/touch_disposition_gesture_filter.cc
+++ b/ui/events/gesture_detection/touch_disposition_gesture_filter.cc
@@ -203,7 +203,7 @@ void TouchDispositionGestureFilter::OnTouchEventAck(uint32_t unique_event_id,
SendAckedEvents();
} else {
DCHECK(!Head().empty());
- DCHECK_EQ(Head().front().unique_touch_event_id(), unique_event_id);
+ DCHECK_EQ(Head().front().unique_touch_event_id(), unique_event_id);//@@@
Head().front().Ack(event_consumed);
SendAckedEvents();
}

Powered by Google App Engine
This is Rietveld 408576698