Home
last modified time | relevance | path

Searched refs:TOUCH_ACTION_AUTO (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/content/browser/renderer_host/input/
Dtouch_action_filter.cc22 allowed_touch_action_(TOUCH_ACTION_AUTO) { in TouchActionFilter()
64 if (allowed_touch_action_ == TOUCH_ACTION_AUTO || in FilterGestureEvent()
69 DCHECK(allowed_touch_action_ == TOUCH_ACTION_AUTO || in FilterGestureEvent()
101 allowed_touch_action_ == TOUCH_ACTION_AUTO; in FilterGestureEvent()
110 allowed_touch_action_ == TOUCH_ACTION_AUTO; in FilterGestureEvent()
159 allowed_touch_action_ = TOUCH_ACTION_AUTO; in ResetTouchAction()
165 if (allowed_touch_action_ == TOUCH_ACTION_AUTO) in ShouldSuppressScroll()
186 if (ta1 == TOUCH_ACTION_AUTO) in Intersect()
188 if (ta2 == TOUCH_ACTION_AUTO) in Intersect()
Dtouch_action_filter_unittest.cc43 filter.OnSetTouchAction(TOUCH_ACTION_AUTO); in TEST()
83 filter.OnSetTouchAction(TOUCH_ACTION_AUTO); in TEST()
324 TouchActionFilter::Intersect(TOUCH_ACTION_NONE, TOUCH_ACTION_AUTO)); in TEST()
326 TouchActionFilter::Intersect(TOUCH_ACTION_AUTO, TOUCH_ACTION_NONE)); in TEST()
328 TouchActionFilter::Intersect(TOUCH_ACTION_AUTO, TOUCH_ACTION_PAN_X)); in TEST()
330 TouchActionFilter::Intersect(TOUCH_ACTION_PAN_Y, TOUCH_ACTION_AUTO)); in TEST()
331 EXPECT_EQ(TOUCH_ACTION_AUTO, in TEST()
332 TouchActionFilter::Intersect(TOUCH_ACTION_AUTO, TOUCH_ACTION_AUTO)); in TEST()
338 TouchActionFilter::Intersect(TOUCH_ACTION_PAN_X_Y, TOUCH_ACTION_AUTO)); in TEST()
358 filter.OnSetTouchAction(TOUCH_ACTION_AUTO); in TEST()
[all …]
/external/chromium_org/content/common/input/
Dtouch_action.h15 TOUCH_ACTION_AUTO = 0, enumerator
/external/chromium_org/content/renderer/
Drender_widget.cc2110 COMPILE_ASSERT(static_cast<blink::WebTouchAction>(TOUCH_ACTION_AUTO) == in setTouchAction()