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

Unified Diff: third_party/WebKit/Source/core/xml/XPathStep.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/xml/XPathStep.cpp
diff --git a/third_party/WebKit/Source/core/xml/XPathStep.cpp b/third_party/WebKit/Source/core/xml/XPathStep.cpp
index 79429360bc86da8f6a68932d60e321e4d7cbadfc..68a1d1d9d5e73557628d4072138c4717e1c4790e 100644
--- a/third_party/WebKit/Source/core/xml/XPathStep.cpp
+++ b/third_party/WebKit/Source/core/xml/XPathStep.cpp
@@ -217,7 +217,7 @@ static inline bool NodeMatchesBasicTest(Node* node,
// Paths without namespaces should match HTML elements in HTML
// documents despite those having an XHTML namespace. Names are
// compared case-insensitively.
- return EqualIgnoringCase(element.localName(), name) &&
+ return DeprecatedEqualIgnoringCase(element.localName(), name) &&
(namespace_uri.IsNull() ||
namespace_uri == element.namespaceURI());
}

Powered by Google App Engine
This is Rietveld 408576698