| 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 d6168e40168c7674fc5be27ea3ac77bc14336db3..ae6aeb13d99e0d4c23c4d4ed1ac3610046ec2a56 100644
|
| --- a/content/browser/download/download_file_manager.cc
|
| +++ b/content/browser/download/download_file_manager.cc
|
| @@ -178,11 +178,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.
|
|
|