| Index: chrome/browser/extensions/user_script_master.cc
|
| diff --git a/chrome/browser/extensions/user_script_master.cc b/chrome/browser/extensions/user_script_master.cc
|
| index 64f892ba04d3e682ab27cdef858a49ec1ce26890..95b8f6aa33894d95f7fc1ab43effe40573007a9e 100644
|
| --- a/chrome/browser/extensions/user_script_master.cc
|
| +++ b/chrome/browser/extensions/user_script_master.cc
|
| @@ -203,7 +203,7 @@ static bool LoadScriptContent(UserScript::File* script_file,
|
| return false;
|
| }
|
| } else {
|
| - if (!file_util::ReadFileToString(path, &content)) {
|
| + if (!base::ReadFileToString(path, &content)) {
|
| LOG(WARNING) << "Failed to load user script file: " << path.value();
|
| return false;
|
| }
|
|
|