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 d95674418f381ac815c41fb6184ab1543aa83641..9556fd14b786a1ed0b6edcb6c2abd66ed721e020 100644 |
--- a/chrome/browser/android/intercept_download_resource_throttle.cc |
+++ b/chrome/browser/android/intercept_download_resource_throttle.cc |
@@ -58,7 +58,6 @@ 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) |
net::HttpRequestHeaders headers; |
request_->GetFullRequestHeaders(&headers); |
if (headers.HasHeader(net::HttpRequestHeaders::kAuthorization) || |
@@ -67,9 +66,7 @@ void InterceptDownloadResourceThrottle::ProcessDownloadRequest() { |
request_->response_info().headers))) { |
return; |
} |
-#else |
- return; |
-#endif |
+ |
} |
// For OMA DRM downloads, Android Download Manager doesn't handle them |