diff options
author | hayato@chromium.org <hayato@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 04:23:02 +0000 |
---|---|---|
committer | hayato@chromium.org <hayato@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 04:23:02 +0000 |
commit | d09ef157bb44612d1bcd1bfe4e5fa26e1aaf0408 (patch) | |
tree | 28c7cfef4167ffddce1fcd0ebacc4ab83b5b33c9 /base/string_util.h | |
parent | 922dea0e0c86de952ae962127d3115234e277854 (diff) | |
download | chromium_src-d09ef157bb44612d1bcd1bfe4e5fa26e1aaf0408.zip chromium_src-d09ef157bb44612d1bcd1bfe4e5fa26e1aaf0408.tar.gz chromium_src-d09ef157bb44612d1bcd1bfe4e5fa26e1aaf0408.tar.bz2 |
Ignore UTF-8's BOM when parsing userscript's metadata.
BUG=27333
TEST=UserScriptTest and check the issue does not happen against userscipt encoded in UTF-8 with BOM..
Review URL: http://codereview.chromium.org/420001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33048 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/string_util.h')
-rw-r--r-- | base/string_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/string_util.h b/base/string_util.h index 6d4a4d9..dec39a6 100644 --- a/base/string_util.h +++ b/base/string_util.h @@ -133,6 +133,8 @@ extern const wchar_t kWhitespaceWide[]; extern const char16 kWhitespaceUTF16[]; extern const char kWhitespaceASCII[]; +extern const char kUtf8ByteOrderMark[]; + // Removes characters in trim_chars from the beginning and end of input. // NOTE: Safe to use the same variable for both input and output. bool TrimString(const std::wstring& input, |