| Index: chrome/browser/extensions/image_loader.cc
|
| diff --git a/chrome/browser/extensions/image_loader.cc b/chrome/browser/extensions/image_loader.cc
|
| index 439df3c249320783281efe07d85648a610097f33..2e2702e7e2c3c7baadbb38d963f55de26d50bc90 100644
|
| --- a/chrome/browser/extensions/image_loader.cc
|
| +++ b/chrome/browser/extensions/image_loader.cc
|
| @@ -83,7 +83,7 @@ void LoadImageOnBlockingPool(const ImageLoader::ImageRepresentation& image_info,
|
| // Read the file from disk.
|
| std::string file_contents;
|
| base::FilePath path = image_info.resource.GetFilePath();
|
| - if (path.empty() || !file_util::ReadFileToString(path, &file_contents)) {
|
| + if (path.empty() || !base::ReadFileToString(path, &file_contents)) {
|
| return;
|
| }
|
|
|
|
|