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

Unified Diff: ui/events/gesture_detection/gesture_provider.h

Issue 1287103004: Sync ui/events to chromium @ https://codereview.chromium.org/1210203002 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 4 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/gesture_provider.h
diff --git a/ui/events/gesture_detection/gesture_provider.h b/ui/events/gesture_detection/gesture_provider.h
index 74749677133d7d3832bec5918a7c71248607052c..a9534d54a6ad7abd474fdd72a2c19b31aac85adf 100644
--- a/ui/events/gesture_detection/gesture_provider.h
+++ b/ui/events/gesture_detection/gesture_provider.h
@@ -41,6 +41,10 @@ class GESTURE_DETECTION_EXPORT GestureProvider {
// events.
bool disable_click_delay;
+ // Whether double-tap detection is supported by the platform. If disabled,
+ // there will be no delay before tap events. Defaults to true.
+ bool double_tap_support_for_platform_enabled;
+
// If |gesture_begin_end_types_enabled| is true, fire an ET_GESTURE_BEGIN
// event for every added touch point, and an ET_GESTURE_END event for every
// removed touch point. This requires one ACTION_CANCEL event to be sent per
@@ -64,6 +68,11 @@ class GESTURE_DETECTION_EXPORT GestureProvider {
// be handled.
bool OnTouchEvent(const MotionEvent& event);
+ // Reset any active gesture detection, including detection of timeout-based
+ // events (e.g., double-tap or delayed tap) for which the pointer has already
+ // been released.
+ void ResetDetection();
+
// Update whether multi-touch pinch zoom is supported by the platform.
void SetMultiTouchZoomSupportEnabled(bool enabled);
« no previous file with comments | « ui/events/gesture_detection/gesture_event_data_packet_unittest.cc ('k') | ui/events/gesture_detection/gesture_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698