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

Unified Diff: sync/syncable/on_disk_directory_backing_store.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 | « sql/connection.cc ('k') | sync/syncable/syncable_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/on_disk_directory_backing_store.cc
diff --git a/sync/syncable/on_disk_directory_backing_store.cc b/sync/syncable/on_disk_directory_backing_store.cc
index cffa00fb2a6f370b39fccf87a24c0bcc1c95a04d..1bebf9aff2f79557fe30702c98b957e752726fe2 100644
--- a/sync/syncable/on_disk_directory_backing_store.cc
+++ b/sync/syncable/on_disk_directory_backing_store.cc
@@ -87,7 +87,7 @@ DirOpenResult OnDiskDirectoryBackingStore::Load(
db_->set_exclusive_locking();
db_->set_page_size(4096);
db_->set_histogram_tag("SyncDirectory");
- base::Delete(backing_filepath_, false);
+ base::DeleteFile(backing_filepath_, false);
result = TryLoad(handles_map, delete_journals, kernel_load_info);
if (result == OPENED) {
« no previous file with comments | « sql/connection.cc ('k') | sync/syncable/syncable_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698