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

Unified Diff: third_party/WebKit/public/platform/WebEventListenerProperties.h

Issue 1895303007: Non passive touch end or touch cancel listeners should not block scroll. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | ui/events/blink/input_handler_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/WebEventListenerProperties.h
diff --git a/third_party/WebKit/public/platform/WebEventListenerProperties.h b/third_party/WebKit/public/platform/WebEventListenerProperties.h
index 1b2d9a05402f8d817e9b9b2f2d8fa7207aa669ec..67a4667cb2c5734ee9d1f8c0e635fbc0f180a917 100644
--- a/third_party/WebKit/public/platform/WebEventListenerProperties.h
+++ b/third_party/WebKit/public/platform/WebEventListenerProperties.h
@@ -10,8 +10,9 @@
namespace blink {
enum class WebEventListenerClass {
- Touch, // This value includes "pointer" events.
- MouseWheel // This value includes "wheel" and "mousewheel" events.
+ TouchStartOrMove, // This value includes "touchstart", "touchmove" and "pointer" events.
+ MouseWheel, // This value includes "wheel" and "mousewheel" events.
+ TouchEndOrCancel, // This value includes "touchend", "touchcancel" events.
};
// Indicates the variety of event listener types for a given WebEventListenerClass.
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebViewTest.cpp ('k') | ui/events/blink/input_handler_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698