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

Unified Diff: third_party/WebKit/Source/core/html/forms/TextInputType.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/forms/TextInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/TextInputType.cpp b/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
index 3f729748271dcd9c43fb44bc2b9abbde9e63a319..141837cdec74390a16a7a59c38763fc557aead22 100644
--- a/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/TextInputType.cpp
@@ -46,9 +46,9 @@ void TextInputType::CountUsage() {
if (GetElement().FastHasAttribute(maxlengthAttr))
CountUsageIfVisible(UseCounter::kInputTypeTextMaxLength);
const AtomicString& type = GetElement().FastGetAttribute(typeAttr);
- if (EqualIgnoringCase(type, InputTypeNames::datetime))
+ if (DeprecatedEqualIgnoringCase(type, InputTypeNames::datetime))
CountUsageIfVisible(UseCounter::kInputTypeDateTimeFallback);
- else if (EqualIgnoringCase(type, InputTypeNames::week))
+ else if (DeprecatedEqualIgnoringCase(type, InputTypeNames::week))
CountUsageIfVisible(UseCounter::kInputTypeWeekFallback);
}

Powered by Google App Engine
This is Rietveld 408576698