| Index: chrome/common/extensions/extension_file_util.cc
|
| diff --git a/chrome/common/extensions/extension_file_util.cc b/chrome/common/extensions/extension_file_util.cc
|
| index 82bf462173eb36443f2e79514ecd02c871fb35c8..08a98c75fbf36a834a1279d53fa842d0f7465225 100644
|
| --- a/chrome/common/extensions/extension_file_util.cc
|
| +++ b/chrome/common/extensions/extension_file_util.cc
|
| @@ -211,7 +211,7 @@ std::vector<base::FilePath> FindPrivateKeyFiles(
|
| continue;
|
|
|
| std::string key_contents;
|
| - if (!file_util::ReadFileToString(current, &key_contents)) {
|
| + if (!base::ReadFileToString(current, &key_contents)) {
|
| // If we can't read the file, assume it's not a private key.
|
| continue;
|
| }
|
|
|