| 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 f88dd58b24c6812cdcfaeec23740441f1bef877f..4666889bbb87f41109817d58263b279166d32f24 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
|
| @@ -121,7 +121,9 @@ bool WarnIfNoDataReductionProxy() {
|
| }
|
|
|
| bool IsIncludedInQuicFieldTrial() {
|
| - return FieldTrialList::FindFullName(kQuicFieldTrial) == kEnabled;
|
| + base::StringPiece quic_trial_group =
|
| + FieldTrialList::FindFullName(kQuicFieldTrial);
|
| + return quic_trial_group.starts_with(kEnabled);
|
| }
|
|
|
| std::string GetQuicFieldTrialName() {
|
|
|