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

Unified Diff: sync/syncable/on_disk_directory_backing_store.cc

Issue 16950028: Move file_util::Delete to the base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 08727c3502b2fc0a02d31f72e738b104d3941d54..cffa00fb2a6f370b39fccf87a24c0bcc1c95a04d 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");
- file_util::Delete(backing_filepath_, false);
+ base::Delete(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