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

Unified Diff: chrome/browser/about_flags.cc

Issue 7034052: Linux/CrOS smooth scrolling support - behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 15b61a2c7f7e8c4a916b287ce8c4f7e0185d2b7f..926bc623bbfa745d5a90dff059d96d00c48d47f1 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -316,6 +316,15 @@ const Experiment kExperiments[] = {
kOsAll,
SINGLE_VALUE_TYPE(switches::kLevelDBIndexedDatabase)
},
+#if defined(ENABLE_SMOOTH_SCROLLING)
darin (slow to review) 2011/05/31 20:40:24 i think this flag should just be available on all
Scott Byer 2011/05/31 21:02:45 Since it's protected by the compile flag, I don't
+ {
+ "enable-smooth-scrolling", // FLAGS:RECORD_UMA
+ IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_NAME,
+ IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION,
+ kOsLinux | kOsCrOS,
+ SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling)
+ },
+#endif
};
const Experiment* experiments = kExperiments;

Powered by Google App Engine
This is Rietveld 408576698