Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: webkit/common/blob/scoped_file.cc

Issue 18584011: Rename base::Delete to base::DeleteFile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/browser/fileapi/sandbox_origin_database.cc ('k') | webkit/plugins/npapi/plugin_instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/blob/scoped_file.cc
diff --git a/webkit/common/blob/scoped_file.cc b/webkit/common/blob/scoped_file.cc
index 56f0743514c4b05d14348c8b2ba54f62d93ebc12..45d7b6b1c328c76b07a932d49191e153212e904a 100644
--- a/webkit/common/blob/scoped_file.cc
+++ b/webkit/common/blob/scoped_file.cc
@@ -63,10 +63,10 @@ void ScopedFile::Reset() {
}
if (scope_out_policy_ == DELETE_ON_SCOPE_OUT) {
- base::FileUtilProxy::Delete(file_task_runner_.get(),
- path_,
- false /* recursive */,
- base::FileUtilProxy::StatusCallback());
+ base::FileUtilProxy::DeleteFile(file_task_runner_.get(),
+ path_,
+ false /* recursive */,
+ base::FileUtilProxy::StatusCallback());
}
// Clear all fields.
« no previous file with comments | « webkit/browser/fileapi/sandbox_origin_database.cc ('k') | webkit/plugins/npapi/plugin_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698