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

Unified Diff: content/public/common/content_switches.cc

Issue 156783006: Consuming a touch move prevents only the next scroll update. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up error handling and tests. Created 6 years, 10 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: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 9108a4b4a10b10442336e08834635915a0d36d09..5763ed92e59ce66ecc0f4119f2f3e37d3204f437 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -887,6 +887,11 @@ const char kTestSandbox[] = "test-sandbox";
// If unspecified, touch timeout behavior will be disabled.
const char kTouchAckTimeoutDelayMs[] = "touch-ack-timeout-delay-ms";
+const char kTouchScrollingMode[] = "touch-scrolling-mode";
+const char kTouchScrollingModeTouchcancel[] = "touchcancel";
+const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove";
+const char kTouchScrollingModeAbsorbTouchmove[] = "absorb-touchmove";
+
// Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally,
// can specify the specific trace categories to include (e.g.
// --trace-shutdown=base,net) otherwise, all events are recorded.

Powered by Google App Engine
This is Rietveld 408576698