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

Unified Diff: third_party/WebKit/Source/core/html/forms/StepRange.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/StepRange.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/StepRange.cpp b/third_party/WebKit/Source/core/html/forms/StepRange.cpp
index 2d6674f6e2a6337351f5aa9c90d261a232a3ac27..d0344dfa1aabd81ba8e3c3cd3274c9bc97312076 100644
--- a/third_party/WebKit/Source/core/html/forms/StepRange.cpp
+++ b/third_party/WebKit/Source/core/html/forms/StepRange.cpp
@@ -109,7 +109,7 @@ Decimal StepRange::ParseStep(AnyStepHandling any_step_handling,
if (step_string.IsEmpty())
return step_description.DefaultValue();
- if (EqualIgnoringCase(step_string, "any")) {
+ if (DeprecatedEqualIgnoringCase(step_string, "any")) {
switch (any_step_handling) {
case kRejectAny:
return Decimal::Nan();

Powered by Google App Engine
This is Rietveld 408576698