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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLElementStack.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/HTMLElementStack.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp b/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp
index 2c1bf45de08309fa27422ea821bf783d50c30931..22a787250acefd25609c51af90ef8516ee5faf11 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp
@@ -245,8 +245,8 @@ bool HTMLElementStack::IsHTMLIntegrationPoint(HTMLStackItem* item) {
item->GetAttributeItem(MathMLNames::encodingAttr);
if (encoding_attr) {
const String& encoding = encoding_attr->Value();
- return EqualIgnoringCase(encoding, "text/html") ||
- EqualIgnoringCase(encoding, "application/xhtml+xml");
+ return DeprecatedEqualIgnoringCase(encoding, "text/html") ||
+ DeprecatedEqualIgnoringCase(encoding, "application/xhtml+xml");
}
return false;
}

Powered by Google App Engine
This is Rietveld 408576698