Index: content/browser/download/download_item_impl.cc |
diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc |
index 07c7558d762d509b3d1d741bf4c130bcc53af234..00686d4450611a38a5389235633e83b1bb261062 100644 |
--- a/content/browser/download/download_item_impl.cc |
+++ b/content/browser/download/download_item_impl.cc |
@@ -62,7 +62,7 @@ void DeleteDownloadedFile(const base::FilePath& path) { |
// Make sure we only delete files. |
if (!base::DirectoryExists(path)) |
- base::Delete(path, false); |
+ base::DeleteFile(path, false); |
} |
// Wrapper around DownloadFile::Detach and DownloadFile::Cancel that |