| 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 8f718908c668d2bd4c02bf2da92241d8eea19e74..d915b758db89833727a405ac2dcf77a8602319e2 100644
|
| --- a/chrome/browser/android/intercept_download_resource_throttle.cc
|
| +++ b/chrome/browser/android/intercept_download_resource_throttle.cc
|
| @@ -34,7 +34,8 @@ void InterceptDownloadResourceThrottle::WillProcessResponse(bool* defer) {
|
| }
|
|
|
| void InterceptDownloadResourceThrottle::ProcessDownloadRequest() {
|
| - if (request_->method() != net::HttpRequestHeaders::kGetMethod)
|
| + if (request_->method() != net::HttpRequestHeaders::kGetMethod ||
|
| + request_->response_info().request_has_auth)
|
| return;
|
|
|
| content::DownloadControllerAndroid::Get()->CreateGETDownload(
|
|
|