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

Unified Diff: chrome/browser/chromeos/system_logs/lsb_release_log_source.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/chromeos/system_logs/lsb_release_log_source.cc
diff --git a/chrome/browser/chromeos/system_logs/lsb_release_log_source.cc b/chrome/browser/chromeos/system_logs/lsb_release_log_source.cc
index e1ad87e41996187e026f8fd6e971a6ba57484c57..d6b056411ea4b589d94d0e1c12a9bd9ce7b5f2eb 100644
--- a/chrome/browser/chromeos/system_logs/lsb_release_log_source.cc
+++ b/chrome/browser/chromeos/system_logs/lsb_release_log_source.cc
@@ -44,7 +44,7 @@ void LsbReleaseLogSource::ReadLSBRelease(SystemLogsResponse* response) {
const base::FilePath lsb_release_file("/etc/lsb-release");
std::string lsb_data;
- bool read_success = file_util::ReadFileToString(lsb_release_file, &lsb_data);
+ bool read_success = base::ReadFileToString(lsb_release_file, &lsb_data);
// if we were using an internal temp file, the user does not need the
// logs to stay past the ReadFile call - delete the file
if (!read_success) {
« no previous file with comments | « chrome/browser/chromeos/system_logs/debug_daemon_log_source.cc ('k') | chrome/browser/chromeos/version_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698