diff options
Diffstat (limited to 'chrome/common/extensions/manifest_handlers/content_scripts_handler.cc')
-rw-r--r-- | chrome/common/extensions/manifest_handlers/content_scripts_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc b/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc index 2753614..9a699b2 100644 --- a/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc +++ b/chrome/common/extensions/manifest_handlers/content_scripts_handler.cc @@ -304,7 +304,7 @@ static bool IsScriptValid(const base::FilePath& path, return false; } - if (!IsStringUTF8(content)) { + if (!base::IsStringUTF8(content)) { *error = l10n_util::GetStringFUTF8( IDS_EXTENSION_BAD_FILE_ENCODING, relative_path.LossyDisplayName()); |