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 721ed3d9b6859ccbb397e059c8aff33ed4e9fb1d..c9996f07098318f57aa25d852e8444fa19046670 100644 |
--- a/chrome/browser/android/intercept_download_resource_throttle.cc |
+++ b/chrome/browser/android/intercept_download_resource_throttle.cc |
@@ -58,16 +58,12 @@ void InterceptDownloadResourceThrottle::ProcessDownloadRequest() { |
// exception is a request that is fetched via the Chrome Proxy and does not |
// authenticate with the origin. |
if (request_->response_info().did_use_http_auth) { |
-#if defined(SPDY_PROXY_AUTH_ORIGIN) |
if (headers.HasHeader(net::HttpRequestHeaders::kAuthorization) || |
!(request_->response_info().headers && |
data_reduction_proxy::HasDataReductionProxyViaHeader( |
request_->response_info().headers, NULL))) { |
return; |
} |
-#else |
- return; |
-#endif |
} |
// For OMA DRM downloads, Android Download Manager doesn't handle them |