| Index: components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
|
| diff --git a/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc b/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
|
| index 24ae0085b2de7ff912435c77eb7cfe64a8ec3484..f54e0e872955c53142a13af30afdd42f092d7387 100644
|
| --- a/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
|
| +++ b/components/data_reduction_proxy/core/common/data_reduction_proxy_params.cc
|
| @@ -85,6 +85,16 @@ bool DataReductionProxyParams::
|
| "DataReductionProxyRemoveMissingViaHeaderOtherBypass") == kEnabled;
|
| }
|
|
|
| +// static
|
| +bool DataReductionProxyParams::IsIncludedInBypassWarningTrial() {
|
| + if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| + data_reduction_proxy::switches::
|
| + kEnableDataReductionProxyBypassWarning)) {
|
| + return true;
|
| + }
|
| + return false;
|
| +}
|
| +
|
| DataReductionProxyTypeInfo::DataReductionProxyTypeInfo()
|
| : proxy_servers(),
|
| is_fallback(false),
|
|
|