Chromium Code Reviews| 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; |