Index: content/browser/download/download_file_manager.cc |
diff --git a/content/browser/download/download_file_manager.cc b/content/browser/download/download_file_manager.cc |
index 3d608a489b76e82eb11b655543de69c9cd5a12fb..82aba337546be3ffeec8f43580afae74031fb011 100644 |
--- a/content/browser/download/download_file_manager.cc |
+++ b/content/browser/download/download_file_manager.cc |
@@ -177,11 +177,7 @@ void DownloadFileManager::StartDownload( |
DCHECK(info); |
DownloadManager* manager = request_handle.GetDownloadManager(); |
- if (!manager) { |
- request_handle.CancelRequest(); |
- delete info; |
- return; |
- } |
+ DCHECK(manager); // Checked in |DownloadResourceHandler::StartOnUIThread()|. |
// |bound_net_log| will be used for logging the both the download item's and |
// the download file's events. |