| 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) {
|
|
|