summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc')
-rw-r--r--chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc b/chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc
index 0a09f4c4333..4200c56f7d1 100644
--- a/chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc
+++ b/chromium/third_party/blink/renderer/core/html/parser/html_parser_idioms.cc
@@ -36,7 +36,7 @@
namespace blink {
-using namespace HTMLNames;
+using namespace html_names;
template <typename CharType>
static String StripLeadingAndTrailingHTMLSpaces(String string,
@@ -380,14 +380,14 @@ WTF::TextEncoding EncodingFromMetaAttributes(
const String& attribute_name = html_attribute.first;
const AtomicString& attribute_value = AtomicString(html_attribute.second);
- if (ThreadSafeMatch(attribute_name, http_equivAttr)) {
+ if (ThreadSafeMatch(attribute_name, kHttpEquivAttr)) {
if (DeprecatedEqualIgnoringCase(attribute_value, "content-type"))
got_pragma = true;
- } else if (ThreadSafeMatch(attribute_name, charsetAttr)) {
+ } else if (ThreadSafeMatch(attribute_name, kCharsetAttr)) {
has_charset = true;
charset = attribute_value;
mode = MetaAttribute::kCharset;
- } else if (!has_charset && ThreadSafeMatch(attribute_name, contentAttr)) {
+ } else if (!has_charset && ThreadSafeMatch(attribute_name, kContentAttr)) {
charset = ExtractCharset(attribute_value);
if (charset.length())
mode = MetaAttribute::kPragma;