| Index: Source/core/html/parser/HTMLMetaCharsetParser.cpp
|
| diff --git a/Source/core/html/parser/HTMLMetaCharsetParser.cpp b/Source/core/html/parser/HTMLMetaCharsetParser.cpp
|
| index 0319fce0dbd7ce359af123e63044da84da62cbab..7f3c34d8905f201df53691c8e553ecde81550871 100644
|
| --- a/Source/core/html/parser/HTMLMetaCharsetParser.cpp
|
| +++ b/Source/core/html/parser/HTMLMetaCharsetParser.cpp
|
| @@ -62,7 +62,7 @@ String HTMLMetaCharsetParser::extractCharset(const String& value)
|
|
|
| while (pos < length) {
|
| pos = value.find(charsetString, pos, false);
|
| - if (pos == notFound)
|
| + if (pos == kNotFound)
|
| break;
|
|
|
| pos += charsetLength;
|
|
|