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

Unified Diff: chrome/tools/convert_dict/convert_dict_unittest.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 | « chrome/test/webdriver/webdriver_automation.cc ('k') | chrome/utility/media_galleries/pmp_test_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/convert_dict/convert_dict_unittest.cc
diff --git a/chrome/tools/convert_dict/convert_dict_unittest.cc b/chrome/tools/convert_dict/convert_dict_unittest.cc
index fa51f4f8ce770f8c3b933d9627c7351ea0481461..91658d16db961d996e26d8a62b1f64cf4f5bcf1b 100644
--- a/chrome/tools/convert_dict/convert_dict_unittest.cc
+++ b/chrome/tools/convert_dict/convert_dict_unittest.cc
@@ -130,8 +130,8 @@ void RunDictionaryTest(const char* codepage,
// Deletes the temporary files.
// We need to delete them after the above AffReader and DicReader are deleted
// since they close the input files in their destructors.
- file_util::Delete(aff_file, false);
- file_util::Delete(dic_file, false);
+ base::Delete(aff_file, false);
+ base::Delete(dic_file, false);
}
} // namespace
« no previous file with comments | « chrome/test/webdriver/webdriver_automation.cc ('k') | chrome/utility/media_galleries/pmp_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698