| 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 2e80cccea4053d13294ab238a3be8b7e3a33acd1..73d3e221b6f5e774301815fbbab1008cd5436587 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);
|
| }
|
| }
|
|
|