Index: chrome/browser/ui/webui/downloads_dom_handler.cc |
diff --git a/chrome/browser/ui/webui/downloads_dom_handler.cc b/chrome/browser/ui/webui/downloads_dom_handler.cc |
index 452ca04f4b559ca9e76dc107320918027397ee49..e08b1210e8666b379ba319c0b7ecc3980a637e52 100644 |
--- a/chrome/browser/ui/webui/downloads_dom_handler.cc |
+++ b/chrome/browser/ui/webui/downloads_dom_handler.cc |
@@ -201,7 +201,7 @@ void DownloadsDOMHandler::HandleRemove(const ListValue* args) { |
void DownloadsDOMHandler::HandleCancel(const ListValue* args) { |
DownloadItem* file = GetDownloadByValue(args); |
if (file) |
- file->Cancel(true); |
+ file->Cancel(); |
} |
void DownloadsDOMHandler::HandleClearAll(const ListValue* args) { |