| Index: chrome/browser/android/intercept_download_resource_throttle.cc
|
| diff --git a/chrome/browser/android/intercept_download_resource_throttle.cc b/chrome/browser/android/intercept_download_resource_throttle.cc
|
| index c64dc7b3bd379494e7ec7f22550ecdd19043763f..d31382d091bd6df0312acb1e4ea600e6bf4a62fd 100644
|
| --- a/chrome/browser/android/intercept_download_resource_throttle.cc
|
| +++ b/chrome/browser/android/intercept_download_resource_throttle.cc
|
| @@ -56,9 +56,9 @@ void InterceptDownloadResourceThrottle::ProcessDownloadRequest() {
|
| // authenticate with the origin.
|
| if (request_->response_info().did_use_http_auth) {
|
| if (headers.HasHeader(net::HttpRequestHeaders::kAuthorization) ||
|
| - !(request_->response_info().headers &&
|
| - data_reduction_proxy::HasDataReductionProxyViaHeader(
|
| - request_->response_info().headers, NULL))) {
|
| + !(request_->response_info().headers.get() &&
|
| + data_reduction_proxy::HasDataReductionProxyViaHeader(
|
| + request_->response_info().headers.get(), NULL))) {
|
| return;
|
| }
|
| }
|
|
|