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

Unified Diff: ui/base/ui_base_switches.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: Created 7 years, 7 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/base/ui_base_switches.cc
diff --git a/ui/base/ui_base_switches.cc b/ui/base/ui_base_switches.cc
index f4c3b7cbadda25a3b0697e7690394e5c97809a5c..b1e304ee3a24da8212db927f92dd907f3eb1c1b9 100644
--- a/ui/base/ui_base_switches.cc
+++ b/ui/base/ui_base_switches.cc
@@ -12,6 +12,10 @@ const char kDisableDwmComposition[] = "disable-dwm-composition";
// Disables the new visual style for application dialogs and controls.
const char kDisableNewDialogStyle[] = "disable-new-dialog-style";
+// Disables sending touch cancel after scroll.
+const char kDisableTouchCancelAfterScroll[] =
+ "disable-touch-cancel-after-scroll";
+
// Disables touch adjustment.
const char kDisableTouchAdjustment[] = "disable-touch-adjustment";
@@ -30,6 +34,10 @@ const char kEnableBezelTouch[] = "enable-bezel-touch";
// Enables the new visual style for application dialogs and controls.
const char kEnableNewDialogStyle[] = "enable-new-dialog-style";
+// Enables sending touch cancel after scroll.
+const char kEnableTouchCancelAfterScroll[] =
+ "enable-touch-cancel-after-scroll";
+
// Enables touch event based drag and drop.
const char kEnableTouchDragDrop[] = "enable-touch-drag-drop";

Powered by Google App Engine
This is Rietveld 408576698