Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp

Issue 2811793004: Rename EqualIgnoringCase*() to DeprecatedEqualIgnoringCase*() (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
index eb9ed56d66fb8d847efe21cc338cf64a34414398..8c770040281fd03fd9157fd82cf99219beee8e8d 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
@@ -418,7 +418,7 @@ WTF::TextEncoding EncodingFromMetaAttributes(
const String& attribute_value = AtomicString(html_attribute.second);
if (ThreadSafeMatch(attribute_name, http_equivAttr)) {
- if (EqualIgnoringCase(attribute_value, "content-type"))
+ if (DeprecatedEqualIgnoringCase(attribute_value, "content-type"))
got_pragma = true;
} else if (charset.IsEmpty()) {
if (ThreadSafeMatch(attribute_name, charsetAttr)) {

Powered by Google App Engine
This is Rietveld 408576698