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

Unified Diff: chrome/tools/convert_dict/convert_dict_unittest.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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/perf/startup_test.cc ('k') | chrome/tools/profile_reset/jtl_compiler_frontend.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 cbb92ac1fa5e99f1905afcf3a81b19d75fe7f37b..eb7ed65446346d949b102b407129d5f1ae2c728a 100644
--- a/chrome/tools/convert_dict/convert_dict_unittest.cc
+++ b/chrome/tools/convert_dict/convert_dict_unittest.cc
@@ -81,11 +81,11 @@ void RunDictionaryTest(const char* codepage,
// Create a temporary affix file and a dictionary file from the test data.
base::FilePath aff_file;
base::CreateTemporaryFile(&aff_file);
- file_util::WriteFile(aff_file, aff_data.c_str(), aff_data.length());
+ base::WriteFile(aff_file, aff_data.c_str(), aff_data.length());
base::FilePath dic_file;
base::CreateTemporaryFile(&dic_file);
- file_util::WriteFile(dic_file, dic_data.c_str(), dic_data.length());
+ base::WriteFile(dic_file, dic_data.c_str(), dic_data.length());
{
// Read the above affix file with AffReader and read the dictionary file
« no previous file with comments | « chrome/test/perf/startup_test.cc ('k') | chrome/tools/profile_reset/jtl_compiler_frontend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698