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

Unified Diff: chrome/browser/sync_file_system/local/local_file_sync_service_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
Index: chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
index d68ddaee824e228dd6808011c74966fcc6a8559d..7bfe283bb57b64c12d43c623ae7a59c2d4944932 100644
--- a/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
+++ b/chrome/browser/sync_file_system/local/local_file_sync_service_unittest.cc
@@ -218,7 +218,7 @@ TEST_F(LocalFileSyncServiceTest, RemoteSyncStepsSimple) {
base::FilePath local_path;
ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &local_path));
ASSERT_EQ(kTestFileDataSize,
- file_util::WriteFile(local_path, kTestFileData, kTestFileDataSize));
+ base::WriteFile(local_path, kTestFileData, kTestFileDataSize));
// Run PrepareForProcessRemoteChange for kFile.
SyncFileMetadata expected_metadata;

Powered by Google App Engine
This is Rietveld 408576698