Index: chrome/browser/download/download_ui_controller.cc |
diff --git a/chrome/browser/download/download_ui_controller.cc b/chrome/browser/download/download_ui_controller.cc |
index 20dad7d0e9f5ed7d083f0f5e92a6f04d3e5db090..5e862cded2f73b2968bec58e0d38ca34737d7bb8 100644 |
--- a/chrome/browser/download/download_ui_controller.cc |
+++ b/chrome/browser/download/download_ui_controller.cc |
@@ -39,10 +39,10 @@ class DefaultUIControllerDelegateAndroid |
void DefaultUIControllerDelegateAndroid::NotifyDownloadStarting( |
content::DownloadItem* item) { |
- // GET downloads are delegated to the Android DownloadManager. Chrome is only |
- // responsible for POST downloads. See |
- // ChromeWebContentsDelegateAndroid::CanDownload(). |
- content::DownloadControllerAndroid::Get()->OnPostDownloadStarted(item); |
+ // GET downloads without authentication are delegated to the Android |
+ // DownloadManager. Chrome is responsible for the rest. See |
+ // InterceptDownloadResourceThrottle::ProcessDownloadRequest(). |
+ content::DownloadControllerAndroid::Get()->OnDownloadStarted(item); |
} |
#else // OS_ANDROID |