| Index: chrome/browser/about_flags.cc
|
| diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
|
| index 5dfc064fa0078bdd4464f8ec976060ce747c683b..8d667de847556df250201a7ea92270ea54942f54 100644
|
| --- a/chrome/browser/about_flags.cc
|
| +++ b/chrome/browser/about_flags.cc
|
| @@ -1874,6 +1874,14 @@ const Experiment kExperiments[] = {
|
| data_reduction_proxy::switches::kEnableDataReductionProxyDev,
|
| data_reduction_proxy::switches::kDisableDataReductionProxyDev)
|
| },
|
| + {
|
| + "enable-data-reduction-proxy-alt",
|
| + IDS_FLAGS_ENABLE_DATA_REDUCTION_PROXY_ALTERNATIVE_NAME,
|
| + IDS_FLAGS_ENABLE_DATA_REDUCTION_PROXY_ALTERNATIVE_DESCRIPTION,
|
| + kOsAndroid,
|
| + SINGLE_VALUE_TYPE(
|
| + data_reduction_proxy::switches::kEnableDataReductionProxyAlt)
|
| + },
|
| #endif
|
| {
|
| "enable-experimental-hotwording",
|
| @@ -1947,14 +1955,6 @@ const Experiment kExperiments[] = {
|
| SINGLE_VALUE_TYPE(chromeos::switches::kWakeOnPackets)
|
| },
|
| #endif // OS_CHROMEOS
|
| - {
|
| - "enable-data-reduction-proxy-alt",
|
| - IDS_FLAGS_ENABLE_DATA_REDUCTION_PROXY_ALTERNATIVE_NAME,
|
| - IDS_FLAGS_ENABLE_DATA_REDUCTION_PROXY_ALTERNATIVE_DESCRIPTION,
|
| - kOsAndroid,
|
| - SINGLE_VALUE_TYPE(data_reduction_proxy::switches::
|
| - kEnableDataReductionProxyAlt)
|
| - },
|
| #if defined(USE_AURA)
|
| {
|
| "enable-tab-audio-muting",
|
| @@ -2123,6 +2123,11 @@ bool SkipConditionalExperiment(const Experiment& experiment,
|
| chrome::VersionInfo::GetChannel() != chrome::VersionInfo::CHANNEL_DEV) {
|
| return true;
|
| }
|
| + // enable-data-reduction-proxy-alt is only available for the Dev channel.
|
| + if (!strcmp("enable-data-reduction-proxy-alt", experiment.internal_name) &&
|
| + chrome::VersionInfo::GetChannel() != chrome::VersionInfo::CHANNEL_DEV) {
|
| + return true;
|
| + }
|
| #endif
|
|
|
| return false;
|
|
|