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); |
} |