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

Unified Diff: chrome/common/media_galleries/picasa_test_util.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/common/mac/mock_launchd.cc ('k') | chrome/common/media_galleries/pmp_test_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/media_galleries/picasa_test_util.cc
diff --git a/chrome/common/media_galleries/picasa_test_util.cc b/chrome/common/media_galleries/picasa_test_util.cc
index d99807576b88f51164e16d5980dfff1181a62755..de926fa96dbeb39f7ff949c79afd9b2c2c36331a 100644
--- a/chrome/common/media_galleries/picasa_test_util.cc
+++ b/chrome/common/media_galleries/picasa_test_util.cc
@@ -99,17 +99,17 @@ void WriteTestAlbumsImagesIndex(const base::FilePath& test_folder_1_path,
"[InSecondAlbumOnly.jpg]\n"
"albums=uid5\n";
ASSERT_TRUE(
- file_util::WriteFile(test_folder_1_path.AppendASCII(kPicasaINIFilename),
- folder_1_test_ini,
- arraysize(folder_1_test_ini)));
+ base::WriteFile(test_folder_1_path.AppendASCII(kPicasaINIFilename),
+ folder_1_test_ini,
+ arraysize(folder_1_test_ini)));
const char folder_2_test_ini[] =
"[InFirstAlbumOnly.jpg]\n"
"albums=uid3\n";
ASSERT_TRUE(
- file_util::WriteFile(test_folder_2_path.AppendASCII(kPicasaINIFilename),
- folder_2_test_ini,
- arraysize(folder_2_test_ini)));
+ base::WriteFile(test_folder_2_path.AppendASCII(kPicasaINIFilename),
+ folder_2_test_ini,
+ arraysize(folder_2_test_ini)));
}
} // namespace picasa
« no previous file with comments | « chrome/common/mac/mock_launchd.cc ('k') | chrome/common/media_galleries/pmp_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698