| Index: chrome/utility/extensions/unpacker.cc
|
| diff --git a/chrome/utility/extensions/unpacker.cc b/chrome/utility/extensions/unpacker.cc
|
| index 8968549403a801d8fabd78825f59fbd4fe892d2e..09cb224aa0e2797e3fb15a5fa29a29646ee02aaf 100644
|
| --- a/chrome/utility/extensions/unpacker.cc
|
| +++ b/chrome/utility/extensions/unpacker.cc
|
| @@ -46,7 +46,7 @@ SkBitmap DecodeImage(const base::FilePath& path) {
|
| // Read the file from disk.
|
| std::string file_contents;
|
| if (!base::PathExists(path) ||
|
| - !file_util::ReadFileToString(path, &file_contents)) {
|
| + !base::ReadFileToString(path, &file_contents)) {
|
| return SkBitmap();
|
| }
|
|
|
|
|