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

Unified Diff: content/browser/renderer_host/input/gesture_event_filter.cc

Issue 40913002: Reenable the tap down gesture. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Freshen Created 7 years, 2 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: content/browser/renderer_host/input/gesture_event_filter.cc
diff --git a/content/browser/renderer_host/input/gesture_event_filter.cc b/content/browser/renderer_host/input/gesture_event_filter.cc
index 9fb0918692fe4896e1e24694b8c36a32b41376d5..6194cc7aebfb756954858548608add0d1ed2f6e3 100644
--- a/content/browser/renderer_host/input/gesture_event_filter.cc
+++ b/content/browser/renderer_host/input/gesture_event_filter.cc
@@ -368,12 +368,6 @@ void GestureEventFilter::SendEventsIgnoringAck() {
return;
}
coalesced_gesture_events_.pop_front();
-
- // TODO - once Blink accepts tap down events correctly, re-enable tap
- // down. See crbug.com/302752.
- if (gesture_event.event.type == WebInputEvent::GestureTapDown)
- continue;
-
client_->SendGestureEventImmediately(gesture_event);
}
}

Powered by Google App Engine
This is Rietveld 408576698