| Index: chrome/browser/chromeos/version_loader.cc
|
| diff --git a/chrome/browser/chromeos/version_loader.cc b/chrome/browser/chromeos/version_loader.cc
|
| index 921c60bf817aaf49ecd3bcb31f1aac52f1b99bd2..5ee7046e32f1e5d7c5fc38a2879ca5666b3af952 100644
|
| --- a/chrome/browser/chromeos/version_loader.cc
|
| +++ b/chrome/browser/chromeos/version_loader.cc
|
| @@ -135,7 +135,7 @@ void VersionLoader::Backend::GetVersion(VersionFormat format,
|
|
|
| std::string contents;
|
| const base::FilePath file_path(kPathVersion);
|
| - if (file_util::ReadFileToString(file_path, &contents)) {
|
| + if (base::ReadFileToString(file_path, &contents)) {
|
| *version = ParseVersion(
|
| contents,
|
| (format == VERSION_FULL) ? kFullVersionPrefix : kVersionPrefix);
|
| @@ -159,7 +159,7 @@ void VersionLoader::Backend::GetFirmware(std::string* firmware) {
|
|
|
| std::string contents;
|
| const base::FilePath file_path(kPathFirmware);
|
| - if (file_util::ReadFileToString(file_path, &contents)) {
|
| + if (base::ReadFileToString(file_path, &contents)) {
|
| *firmware = ParseFirmware(contents);
|
| }
|
| }
|
|
|