summaryrefslogtreecommitdiffstats
path: root/chrome/browser/about_flags.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/about_flags.cc')
-rw-r--r--chrome/browser/about_flags.cc19
1 files changed, 15 insertions, 4 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 629daa9..e7317f3 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -90,6 +90,17 @@ const Experiment::Choice kThreadedCompositingModeChoices[] = {
switches::kEnableThreadedCompositing, ""}
};
+const Experiment::Choice kTouchOptimizedUIChoices[] = {
+ { IDS_FLAGS_TOUCH_OPTIMIZED_UI_AUTOMATIC, "", "" },
+ { IDS_FLAGS_TOUCH_OPTIMIZED_UI_ENABLED,
+ switches::kTouchOptimizedUI,
+ switches::kTouchOptimizedUIEnabled },
+ { IDS_FLAGS_TOUCH_OPTIMIZED_UI_DISABLED,
+ switches::kTouchOptimizedUI,
+ switches::kTouchOptimizedUIDisabled }
+};
+
+
// RECORDING USER METRICS FOR FLAGS:
// -----------------------------------------------------------------------------
// The first line of the experiment is the internal name. If you'd like to
@@ -626,10 +637,10 @@ const Experiment kExperiments[] = {
#endif
{
"touch-optimized-ui",
- IDS_TOUCH_OPTIMIZED_UI_NAME,
- IDS_TOUCH_OPTIMIZED_UI_DESCRIPTION,
- kOsAll,
- SINGLE_VALUE_TYPE(switches::kTouchOptimizedUI)
+ IDS_FLAGS_TOUCH_OPTIMIZED_UI_NAME,
+ IDS_FLAGS_TOUCH_OPTIMIZED_UI_DESCRIPTION,
+ kOsWin | kOsCrOS,
+ MULTI_VALUE_TYPE(kTouchOptimizedUIChoices)
},
{
"enable-touch-events",