Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Unified Diff: chrome/browser/about_flags.cc

Issue 1830343002: Enable DRP config service by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sclittle comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index e37e5b2d3d3e0bda75b88af315eafa1ce813fc28..f82a714b16f9397e78af41ddc6022ce41f9e1055 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1478,11 +1478,6 @@ const FeatureEntry kFeatureEntries[] = {
IDS_FLAGS_DATA_REDUCTION_PROXY_RESET_SAVINGS_DESCRIPTION, kOsAll,
SINGLE_VALUE_TYPE(
data_reduction_proxy::switches::kClearDataReductionProxyDataSavings)},
- {"enable-data-reduction-proxy-config-client",
- IDS_FLAGS_DATA_REDUCTION_PROXY_CONFIG_CLIENT_NAME,
- IDS_FLAGS_DATA_REDUCTION_PROXY_CONFIG_CLIENT_DESCRIPTION, kOsAll,
- SINGLE_VALUE_TYPE(data_reduction_proxy::switches::
- kEnableDataReductionProxyConfigClient)},
{"allow-insecure-localhost", IDS_ALLOW_INSECURE_LOCALHOST,
IDS_ALLOW_INSECURE_LOCALHOST_DESCRIPTION, kOsAll,
SINGLE_VALUE_TYPE(switches::kAllowInsecureLocalhost)},
@@ -1891,16 +1886,6 @@ bool SkipConditionalFeatureEntry(const FeatureEntry& entry) {
return true;
}
- // enable-data-reduction-proxy-config-client is only available for Chromium
- // builds and the Canary/Dev channels.
- if (!strcmp("enable-data-reduction-proxy-config-client",
- entry.internal_name) &&
- channel != version_info::Channel::DEV &&
- channel != version_info::Channel::CANARY &&
- channel != version_info::Channel::UNKNOWN) {
- return true;
- }
-
return false;
}

Powered by Google App Engine
This is Rietveld 408576698