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

Unified Diff: chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.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/fake_drive_service_helper.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.cc b/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.cc
index 8e9ff62a909dd3c1c7112445bb8904160a1d626b..82ae20199bf29ced468f6cb6b3de1db8b81f750d 100644
--- a/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.cc
+++ b/chrome/browser/sync_file_system/drive_backend/fake_drive_service_helper.cc
@@ -257,7 +257,7 @@ GDataErrorCode FakeDriveServiceHelper::ReadFile(
if (error != google_apis::HTTP_SUCCESS)
return error;
- return file_util::ReadFileToString(temp_file, file_content)
+ return base::ReadFileToString(temp_file, file_content)
? google_apis::HTTP_SUCCESS : google_apis::GDATA_FILE_ERROR;
}

Powered by Google App Engine
This is Rietveld 408576698