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

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

Issue 2158423002: Wheel scroll latching enabled behind flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The name of the flag modified to represent both wheel and touchpad scroll latching. Created 4 years, 5 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_features.cc
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
index 72da725670843c56b0589cd7de9f4b4ff89b5deb..44f9518a9d98ffaf89546f945d8d38087df71bb6 100644
--- a/content/public/common/content_features.cc
+++ b/content/public/common/content_features.cc
@@ -119,6 +119,10 @@ const base::Feature kStaleWhileRevalidate{"StaleWhileRevalidate2",
const base::Feature kTokenBinding{"token-binding",
base::FEATURE_DISABLED_BY_DEFAULT};
+// Enables touchpad and wheel scroll latching. For now, it works only for Mac.
tdresser 2016/07/25 20:37:29 Doesn't it work on non-mac too?
sahel 2016/07/25 21:28:35 The wheel part works, touchpad part, not yet. I de
+const base::Feature kTouchpadAndWheelScrollLatching{
+ "TouchpadAndWheelScrollLatching", base::FEATURE_DISABLED_BY_DEFAULT};
+
// Weak MemoryCache (https://crbug.com/603462).
const base::Feature kWeakMemoryCache{"WeakMemoryCache",
base::FEATURE_DISABLED_BY_DEFAULT};

Powered by Google App Engine
This is Rietveld 408576698