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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_features.cc

Issue 2889993004: New CPAT support in DataReductionProxyConfig guarded by feature flag. (Closed)
Patch Set: Updates per Megan's comments Created 3 years, 7 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: components/data_reduction_proxy/core/common/data_reduction_proxy_features.cc
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_features.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_features.cc
index fd4f3f60cca2f55e91c04d8d235687f79d8d032b..4d5a8c8fa32ccbdb098237d9ea2836a97ed4d940 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_features.cc
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_features.cc
@@ -15,5 +15,11 @@ const base::Feature kDataReductionMainMenu{"DataReductionProxyMainMenu",
const base::Feature kDataReductionSiteBreakdown{
"DataReductionProxySiteBreakdown", base::FEATURE_DISABLED_BY_DEFAULT};
+// Enables letting proxy server decide on transformations vs. client
bengr 2017/05/23 17:51:25 Please rewrite to make this clearer: // Enables a
dougarnett 2017/05/23 18:27:44 Done.
+// deciding locally by effective connection type. Intended to be used to
+// enable newer CPAT protocol to the proxy server.
+const base::Feature kDataReductionProxyDecidesTransform{
+ "DataReductionProxyDecidesTransform", base::FEATURE_DISABLED_BY_DEFAULT};
+
} // namespace features
} // namespace data_reduction_proxy

Powered by Google App Engine
This is Rietveld 408576698