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

Unified Diff: third_party/WebKit/Source/core/dom/AttributeCollection.h

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/dom/AttributeCollection.h
diff --git a/third_party/WebKit/Source/core/dom/AttributeCollection.h b/third_party/WebKit/Source/core/dom/AttributeCollection.h
index ddf40ee3074d348adc4dfa8e7d4a7df4b68f76f8..30f1cb591406aff392b883e75bee36d58285c633 100644
--- a/third_party/WebKit/Source/core/dom/AttributeCollection.h
+++ b/third_party/WebKit/Source/core/dom/AttributeCollection.h
@@ -204,7 +204,7 @@ size_t AttributeCollectionGeneric<Container, ContainerMemberType>::FindSlowCase(
// and all HTML/SVG attributes have a null namespace!
if (!it->GetName().HasPrefix()) {
if (should_ignore_attribute_case &&
- EqualIgnoringCase(name, it->LocalName()))
+ DeprecatedEqualIgnoringCase(name, it->LocalName()))
return index;
} else {
// FIXME: Would be faster to do this comparison without calling toString,
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp ('k') | third_party/WebKit/Source/core/dom/CompositorProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698