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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc

Issue 586333003: Disable fallback support for alternative data reduction proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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/browser/data_reduction_proxy_params_test_utils.cc
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc
index 611a18036d133b1a135b66b43d1e8e5d4d651005..e0bcab648588e8c0e51952badaf91789ad986697 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_params_test_utils.cc
@@ -28,9 +28,11 @@ TestDataReductionProxyParams::TestDataReductionProxyParams(
int flags, unsigned int has_definitions)
: DataReductionProxyParams(flags, false),
has_definitions_(has_definitions) {
- init_result_ = Init(flags & DataReductionProxyParams::kAllowed,
- flags & DataReductionProxyParams::kFallbackAllowed,
- flags & DataReductionProxyParams::kAlternativeAllowed);
+ init_result_ = Init(
+ flags & DataReductionProxyParams::kAllowed,
+ flags & DataReductionProxyParams::kFallbackAllowed,
+ flags & DataReductionProxyParams::kAlternativeAllowed,
+ flags & DataReductionProxyParams::kAlternativeFallbackAllowed);
}
bool TestDataReductionProxyParams::init_result() const {

Powered by Google App Engine
This is Rietveld 408576698