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

Unified Diff: chrome/browser/feedback/feedback_util.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/feedback/feedback_util.cc
diff --git a/chrome/browser/feedback/feedback_util.cc b/chrome/browser/feedback/feedback_util.cc
index 2c82b2c37d0143eda56dd5dd72765eaaa7d28c7f..0bbad4a05eb68c64bf63c5890fa61e9509fe2040 100644
--- a/chrome/browser/feedback/feedback_util.cc
+++ b/chrome/browser/feedback/feedback_util.cc
@@ -415,7 +415,7 @@ bool ZipString(const std::string& logs, std::string* compressed_logs) {
if (!zip::Zip(temp_path, zip_file, false))
return false;
- if (!file_util::ReadFileToString(zip_file, compressed_logs))
+ if (!base::ReadFileToString(zip_file, compressed_logs))
return false;
return true;
« no previous file with comments | « chrome/browser/extensions/user_script_master.cc ('k') | chrome/browser/google/google_update_settings_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698