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

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

Issue 2753533002: Fixed a bug in TouchActionFilter for unidirectional touch-actions. (Closed)
Patch Set: Fixed a test. Created 3 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: content/browser/renderer_host/input/touch_action_filter.cc
diff --git a/content/browser/renderer_host/input/touch_action_filter.cc b/content/browser/renderer_host/input/touch_action_filter.cc
index d51412c74f3c4184c4273d845e26f04cbc672201..50a7b908bfbbe7925621fa1c6b83644bc435eeeb 100644
--- a/content/browser/renderer_host/input/touch_action_filter.cc
+++ b/content/browser/renderer_host/input/touch_action_filter.cc
@@ -180,48 +180,31 @@ bool TouchActionFilter::ShouldSuppressManipulation(
return (allowed_touch_action_ & TOUCH_ACTION_PINCH_ZOOM) == 0;
}
- if ((allowed_touch_action_ & TOUCH_ACTION_PAN) == TOUCH_ACTION_PAN)
- // All possible panning is enabled.
- return false;
-
- if (!(allowed_touch_action_ & TOUCH_ACTION_PAN))
- // No panning is enabled.
- return true;
+ const float& deltaXHint = gesture_event.data.scrollBegin.deltaXHint;
+ const float& deltaYHint = gesture_event.data.scrollBegin.deltaYHint;
- // If there's no hint or it's perfectly diagonal, then allow the scroll.
- // Note, however, that the panning direction of the following GSU/GPB events
- // is updated if needed to make them touch-action compliant.
- //
- // TODO(mustaq): With unidirectional touch-action, this can
- // allow wrong panning with diagonal swipes. Investigate. crbug.com/697102
- if (fabs(gesture_event.data.scrollBegin.deltaXHint) ==
- fabs(gesture_event.data.scrollBegin.deltaYHint))
+ if (deltaXHint == 0.0 && deltaYHint == 0.0)
return false;
- // Determine the primary initial axis of the scroll, and check whether
- // panning along that axis is permitted.
- if (fabs(gesture_event.data.scrollBegin.deltaXHint) >
- fabs(gesture_event.data.scrollBegin.deltaYHint)) {
- if (gesture_event.data.scrollBegin.deltaXHint > 0 &&
- allowed_touch_action_ & TOUCH_ACTION_PAN_LEFT) {
- return false;
- } else if (gesture_event.data.scrollBegin.deltaXHint < 0 &&
- allowed_touch_action_ & TOUCH_ACTION_PAN_RIGHT) {
- return false;
- } else {
- return true;
- }
- } else {
- if (gesture_event.data.scrollBegin.deltaYHint > 0 &&
- allowed_touch_action_ & TOUCH_ACTION_PAN_UP) {
- return false;
- } else if (gesture_event.data.scrollBegin.deltaYHint < 0 &&
- allowed_touch_action_ & TOUCH_ACTION_PAN_DOWN) {
- return false;
- } else {
- return true;
- }
+ const float absDeltaXHint = fabs(deltaXHint);
+ const float absDeltaYHint = fabs(deltaYHint);
+
+ TouchAction minimal_conforming_touch_action = TOUCH_ACTION_NONE;
+ if (absDeltaXHint >= absDeltaYHint) {
+ if (deltaXHint > 0)
+ minimal_conforming_touch_action |= TOUCH_ACTION_PAN_LEFT;
+ else if (deltaXHint < 0)
+ minimal_conforming_touch_action |= TOUCH_ACTION_PAN_RIGHT;
+ }
+ if (absDeltaYHint >= absDeltaXHint) {
+ if (deltaYHint > 0)
+ minimal_conforming_touch_action |= TOUCH_ACTION_PAN_UP;
+ else if (deltaYHint < 0)
+ minimal_conforming_touch_action |= TOUCH_ACTION_PAN_DOWN;
}
+ DCHECK(minimal_conforming_touch_action != TOUCH_ACTION_NONE);
+
+ return (allowed_touch_action_ & minimal_conforming_touch_action) == 0;
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698