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

Unified Diff: components/data_reduction_proxy/core/common/data_reduction_proxy_params.h

Issue 669163003: Handle disabling data reduction proxy for all platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync to head Created 6 years, 2 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_params.h
diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_params.h b/components/data_reduction_proxy/core/common/data_reduction_proxy_params.h
index 118bb85d300c0061f1cfa3735fdc8be4ad41b00b..a1471b8645ce252411ed6482ad4978fce9c60cb3 100644
--- a/components/data_reduction_proxy/core/common/data_reduction_proxy_params.h
+++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_params.h
@@ -52,6 +52,8 @@ class DataReductionProxyParams {
static const unsigned int kFallbackAllowed = (1 << 1);
static const unsigned int kAlternativeAllowed = (1 << 2);
static const unsigned int kAlternativeFallbackAllowed = (1 << 3);
+ static const unsigned int kAllowAllProxyConfigurations = kAllowed |
+ kFallbackAllowed | kAlternativeAllowed | kAlternativeFallbackAllowed;
static const unsigned int kPromoAllowed = (1 << 4);
static const unsigned int kHoldback = (1 << 5);

Powered by Google App Engine
This is Rietveld 408576698