From c99767e0f14ae4470d9c7af928796d737ecc7314 Mon Sep 17 00:00:00 2001 From: "jdduke@chromium.org" Date: Thu, 12 Jun 2014 06:33:01 +0000 Subject: Support minimum gesture bounds in GestureProvider Some touch devices report either zero or unreasonably small touch sizes. While this doesn't present a problem for gesture detection, it does affect the behavior of the touch-derived gestures. For example, tap disambiguation is prevented if the tap gesture's size is sufficiently small. As a workaround, provide a platform-specific minimum gesture bounds length in GestureProvider. On Android, this value is the same as was used before the unified gesture detector, and on Aura we simply use half the default touch size. BUG=379876 Review URL: https://codereview.chromium.org/321563002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276550 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/renderer_host/input/web_input_event_util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/browser/renderer_host') diff --git a/content/browser/renderer_host/input/web_input_event_util.cc b/content/browser/renderer_host/input/web_input_event_util.cc index 0ddfc01..de84117 100644 --- a/content/browser/renderer_host/input/web_input_event_util.cc +++ b/content/browser/renderer_host/input/web_input_event_util.cc @@ -241,7 +241,7 @@ WebGestureEvent CreateWebGestureEventFromGestureEventData( gesture.timeStampSeconds = (data.time - base::TimeTicks()).InSecondsF(); gesture.sourceDevice = blink::WebGestureDeviceTouchscreen; - switch (data.type) { + switch (data.type()) { case ui::ET_GESTURE_SHOW_PRESS: gesture.type = WebInputEvent::GestureShowPress; gesture.data.showPress.width = data.details.bounding_box_f().width(); -- cgit v1.1