Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index b98d00168cfa485167eef6c523830728a6bed208..ac788a475b813ca9422921cc976aac569155009b 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -213,6 +213,7 @@ const Experiment::Choice kLCDTextChoices[] = { |
{ IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, switches::kDisableLCDText, ""} |
}; |
+#ifndef USE_AURA |
const Experiment::Choice kDelegatedRendererChoices[] = { |
{ IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" }, |
{ IDS_GENERIC_EXPERIMENT_CHOICE_ENABLED, |
@@ -220,6 +221,7 @@ const Experiment::Choice kDelegatedRendererChoices[] = { |
{ IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, |
switches::kDisableDelegatedRenderer, ""} |
}; |
+#endif |
const Experiment::Choice kMaxTilesForInterestAreaChoices[] = { |
{ IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" }, |
@@ -453,7 +455,11 @@ const Experiment kExperiments[] = { |
"force-compositing-mode-2", |
IDS_FLAGS_FORCE_COMPOSITING_MODE_NAME, |
IDS_FLAGS_FORCE_COMPOSITING_MODE_DESCRIPTION, |
+#if !defined(USE_AURA) |
kOsLinux, |
+#else |
+ 0, |
+#endif |
ENABLE_DISABLE_VALUE_TYPE(switches::kForceCompositingMode, |
switches::kDisableForceCompositingMode) |
}, |
@@ -461,7 +467,11 @@ const Experiment kExperiments[] = { |
"threaded-compositing-mode", |
IDS_FLAGS_THREADED_COMPOSITING_MODE_NAME, |
IDS_FLAGS_THREADED_COMPOSITING_MODE_DESCRIPTION, |
+#if !defined(USE_AURA) |
kOsLinux, |
+#else |
+ 0, |
+#endif |
ENABLE_DISABLE_VALUE_TYPE(switches::kEnableThreadedCompositing, |
switches::kDisableThreadedCompositing) |
}, |
@@ -1255,16 +1265,15 @@ const Experiment kExperiments[] = { |
kOsDesktop, |
MULTI_VALUE_TYPE(kLCDTextChoices) |
}, |
+#ifndef USE_AURA |
{ |
"delegated-renderer", |
IDS_FLAGS_DELEGATED_RENDERER_NAME, |
IDS_FLAGS_DELEGATED_RENDERER_DESCRIPTION, |
-#ifdef USE_AURA |
- kOsWin | kOsLinux | |
-#endif |
- kOsAndroid | kOsCrOS, |
+ kOsAndroid, |
MULTI_VALUE_TYPE(kDelegatedRendererChoices) |
}, |
+#endif |
{ |
"enable-websocket-experimental-implementation", |
IDS_FLAGS_ENABLE_EXPERIMENTAL_WEBSOCKET_NAME, |