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

Unified Diff: chrome/browser/sync_file_system/drive_backend/drive_file_sync_service_fake_unittest.cc

Issue 19579005: Move ReadFileToString to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/drive_backend/drive_file_sync_service_fake_unittest.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/drive_file_sync_service_fake_unittest.cc b/chrome/browser/sync_file_system/drive_backend/drive_file_sync_service_fake_unittest.cc
index b31f9dd1cc2a8774f35a5acf83c3535a38468e3e..f5c267be56247f8cf2595d8a7b7cdafbf6a1a258 100644
--- a/chrome/browser/sync_file_system/drive_backend/drive_file_sync_service_fake_unittest.cc
+++ b/chrome/browser/sync_file_system/drive_backend/drive_file_sync_service_fake_unittest.cc
@@ -813,8 +813,7 @@ void DriveFileSyncServiceFakeTest::TestGetRemoteVersions() {
ASSERT_EQ(SYNC_STATUS_OK, status);
std::string downloaded_content;
- EXPECT_TRUE(file_util::ReadFileToString(downloaded.path(),
- &downloaded_content));
+ EXPECT_TRUE(base::ReadFileToString(downloaded.path(), &downloaded_content));
EXPECT_EQ(content, downloaded_content);
}

Powered by Google App Engine
This is Rietveld 408576698