| 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 4047c25a409e9b6e8d12e0d9228a44b0c682f594..b45966377470fab121938ed116931bd7fd5d9eb3 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);
|
| }
|
| }
|
|
|