| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc
|
| index c28f9e0fa551f71963f2b5a9365d65a7d131a852..f8483575138490dbcf80211e39110e20ca74968d 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_tamper_detection.cc
|
| @@ -299,9 +299,8 @@ bool DataReductionProxyTamperDetection::ValidateViaHeader(
|
| base::StringPiece fingerprint,
|
| bool* has_chrome_proxy_via_header) const {
|
| bool has_intermediary;
|
| - *has_chrome_proxy_via_header = HasDataReductionProxyViaHeader(
|
| - response_headers_,
|
| - &has_intermediary);
|
| + *has_chrome_proxy_via_header =
|
| + HasDataReductionProxyViaHeader(*response_headers_, &has_intermediary);
|
|
|
| if (*has_chrome_proxy_via_header)
|
| return !has_intermediary;
|
|
|