Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index b5137f2589d0bf8fb4cc9cb1f1ebd7021b02c88e..75f9d662ed26961524a9e55fb969ab03f4a0999c 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -364,6 +364,18 @@ const Experiment kExperiments[] = { |
kOsAll, |
SINGLE_VALUE_TYPE(switches::kEnableSyncTypedUrls) |
}, |
+ { |
+ "enable-smooth-scrolling", // FLAGS:RECORD_UMA |
+ IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_NAME, |
+ IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION, |
+ // Can't expose the switch unless the code is compiled in. |
+#if defined(ENABLE_SMOOTH_SCROLLING) |
+ kOsAll, |
+#else |
+ 0, |
+#endif |
+ SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) |
+ }, |
}; |
const Experiment* experiments = kExperiments; |