| 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 80b6bf72064591efc1fec7e6e53c8dc154543cbf..3f5692a54c628f830879b10aa11d1ec6cd42226f 100644
|
| --- a/chrome/browser/extensions/user_script_master.cc
|
| +++ b/chrome/browser/extensions/user_script_master.cc
|
| @@ -221,9 +221,9 @@ static bool LoadScriptContent(UserScript::File* script_file,
|
| }
|
|
|
| // Remove BOM from the content.
|
| - std::string::size_type index = content.find(kUtf8ByteOrderMark);
|
| + std::string::size_type index = content.find(base::kUtf8ByteOrderMark);
|
| if (index == 0) {
|
| - script_file->set_content(content.substr(strlen(kUtf8ByteOrderMark)));
|
| + script_file->set_content(content.substr(strlen(base::kUtf8ByteOrderMark)));
|
| } else {
|
| script_file->set_content(content);
|
| }
|
|
|