| Index: chrome/browser/chromeos/customization_document.cc
|
| diff --git a/chrome/browser/chromeos/customization_document.cc b/chrome/browser/chromeos/customization_document.cc
|
| index a625cd48d949dafaccb1582a46741c39de4f5484..24adaf39a593e9b25c43715d032657ab06447761 100644
|
| --- a/chrome/browser/chromeos/customization_document.cc
|
| +++ b/chrome/browser/chromeos/customization_document.cc
|
| @@ -80,7 +80,7 @@ CustomizationDocument::~CustomizationDocument() {}
|
| bool CustomizationDocument::LoadManifestFromFile(
|
| const base::FilePath& manifest_path) {
|
| std::string manifest;
|
| - if (!file_util::ReadFileToString(manifest_path, &manifest))
|
| + if (!base::ReadFileToString(manifest_path, &manifest))
|
| return false;
|
| return LoadManifestFromString(manifest);
|
| }
|
| @@ -280,7 +280,7 @@ void ServicesCustomizationDocument::ReadFileInBackground(
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
|
|
| std::string manifest;
|
| - if (file_util::ReadFileToString(file, &manifest)) {
|
| + if (base::ReadFileToString(file, &manifest)) {
|
| BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| base::Bind(
|
| base::IgnoreResult(
|
|
|