| Index: chrome/browser/about_flags.cc
|
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
|
| index c3ede6d5405d886ed080cf02ec86593130ee8712..17dcb10e5648c3dc2095e039a81bbd7220c3defd 100644
|
| --- a/chrome/browser/about_flags.cc
|
| +++ b/chrome/browser/about_flags.cc
|
| @@ -214,6 +214,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,
|
| @@ -221,6 +222,7 @@ const Experiment::Choice kDelegatedRendererChoices[] = {
|
| { IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED,
|
| switches::kDisableDelegatedRenderer, ""}
|
| };
|
| +#endif
|
|
|
| const Experiment::Choice kMaxTilesForInterestAreaChoices[] = {
|
| { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
|
| @@ -466,7 +468,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)
|
| },
|
| @@ -474,7 +480,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)
|
| },
|
| @@ -1258,16 +1268,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,
|
|
|