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

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

Issue 2869823003: [VSync Queue] Plug touch ack to gesture events and flush vsync queue if necessary (Closed)
Patch Set: Fix MSAN Use-of-uninitialized-value: Initialize GestureEventDetails Created 3 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 side-by-side diff with in-line comments
Download patch
Index: ui/events/gesture_detection/filtered_gesture_provider.cc
diff --git a/ui/events/gesture_detection/filtered_gesture_provider.cc b/ui/events/gesture_detection/filtered_gesture_provider.cc
index d82d5db823df5cb9bd52803a2ad87b31f8939bbb..10b93b25730eba6f6ccdef1efa2185ee8810f04b 100644
--- a/ui/events/gesture_detection/filtered_gesture_provider.cc
+++ b/ui/events/gesture_detection/filtered_gesture_provider.cc
@@ -50,9 +50,12 @@ FilteredGestureProvider::OnTouchEvent(const MotionEvent& event) {
return result;
}
-void FilteredGestureProvider::OnTouchEventAck(uint32_t unique_event_id,
- bool event_consumed) {
- gesture_filter_.OnTouchEventAck(unique_event_id, event_consumed);
+void FilteredGestureProvider::OnTouchEventAck(
+ uint32_t unique_event_id,
+ bool event_consumed,
+ bool is_source_touch_event_set_non_blocking) {
+ gesture_filter_.OnTouchEventAck(unique_event_id, event_consumed,
+ is_source_touch_event_set_non_blocking);
}
void FilteredGestureProvider::ResetDetection() {

Powered by Google App Engine
This is Rietveld 408576698