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 ba1f34d63a9496a21a61849480d318d85cd0a918..3f01158b573bee8498fc72baa22d4bf44cb4ee2b 100644 |
--- a/chrome/browser/android/intercept_download_resource_throttle.cc |
+++ b/chrome/browser/android/intercept_download_resource_throttle.cc |
@@ -48,7 +48,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) |
bengr
2014/07/11 20:42:53
Currently, Android apps built from solely the chro
Not at Google. Contact bengr
2014/07/16 22:41:33
Discussed in person. Let's do the configuration re
|
net::HttpRequestHeaders headers; |
request_->GetFullRequestHeaders(&headers); |
if (headers.HasHeader(net::HttpRequestHeaders::kAuthorization) || |
@@ -57,9 +56,7 @@ void InterceptDownloadResourceThrottle::ProcessDownloadRequest() { |
request_->response_info().headers))) { |
return; |
} |
-#else |
- return; |
-#endif |
+ |
} |
if (request_->url_chain().empty()) |