| Index: chrome/browser/ui/webui/active_downloads_ui.cc
|
| diff --git a/chrome/browser/ui/webui/active_downloads_ui.cc b/chrome/browser/ui/webui/active_downloads_ui.cc
|
| index 9b8a78f3d97b09df5aa15f1194767831990f426c..5808f459c1158a554f97e42e20dd69db533c1df7 100644
|
| --- a/chrome/browser/ui/webui/active_downloads_ui.cc
|
| +++ b/chrome/browser/ui/webui/active_downloads_ui.cc
|
| @@ -274,7 +274,7 @@ void ActiveDownloadsHandler::HandleCancelDownload(const ListValue* args) {
|
| DownloadItem* item = GetDownloadById(args);
|
| if (item) {
|
| if (item->IsPartialDownload())
|
| - item->Cancel(true);
|
| + item->Cancel();
|
| item->Delete(DownloadItem::DELETE_DUE_TO_USER_DISCARD);
|
| }
|
| }
|
|
|