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

Unified Diff: chrome/browser/about_flags.cc

Issue 16114003: Don't send touch move to renderer while scrolling (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix the case touch event queue could be empty when GetLatestEvent() is called Created 7 years, 6 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: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 1479406d01118cac844e394675c8df42e1f29b7c..37626f1f5ded499f1931d3a52396284f611dcf78 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1298,6 +1298,15 @@ const Experiment kExperiments[] = {
},
#endif
{
+ "enable-touch-cancel-on-scroll",
+ IDS_FLAGS_ENABLE_TOUCH_CANCEL_ON_SCROLL_NAME,
+ IDS_FLAGS_ENABLE_TOUCH_CANCEL_ON_SCROLL_DESCRIPTION,
+ kOsDesktop,
+ ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(
+ switches::kTouchCancelOnScroll, "1",
+ switches::kTouchCancelOnScroll, "0")
+ },
+ {
"enable-touch-drag-drop",
IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME,
IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION,

Powered by Google App Engine
This is Rietveld 408576698