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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMenuItemElement.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/HTMLMenuItemElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLMenuItemElement.cpp b/third_party/WebKit/Source/core/html/HTMLMenuItemElement.cpp
index 5bbec3e886aed5631db8c445c529b809d6685256..20502c4aa363ecfaa2afd8ae0a63951b059b6cc8 100644
--- a/third_party/WebKit/Source/core/html/HTMLMenuItemElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMenuItemElement.cpp
@@ -32,12 +32,13 @@ void HTMLMenuItemElement::ParseAttribute(
void HTMLMenuItemElement::DefaultEventHandler(Event* event) {
if (event->type() == EventTypeNames::click) {
- if (EqualIgnoringCase(FastGetAttribute(typeAttr), "checkbox")) {
+ if (DeprecatedEqualIgnoringCase(FastGetAttribute(typeAttr), "checkbox")) {
if (FastHasAttribute(checkedAttr))
removeAttribute(checkedAttr);
else
setAttribute(checkedAttr, "checked");
- } else if (EqualIgnoringCase(FastGetAttribute(typeAttr), "radio")) {
+ } else if (DeprecatedEqualIgnoringCase(FastGetAttribute(typeAttr),
+ "radio")) {
if (Element* parent = parentElement()) {
AtomicString group = FastGetAttribute(radiogroupAttr);
for (HTMLMenuItemElement& menu_item :
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLMetaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698