Index: third_party/WebKit/Source/core/testing/Internals.cpp |
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp |
index 553081ddc127973c27351933c1216a78a76ca873..a7a8ac7460b3a2e065a75f4ac6f43be02c435b6e 100644 |
--- a/third_party/WebKit/Source/core/testing/Internals.cpp |
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp |
@@ -191,18 +191,18 @@ class UseCounterObserverImpl final : public UseCounter::Observer { |
static WTF::Optional<DocumentMarker::MarkerType> MarkerTypeFrom( |
const String& marker_type) { |
- if (EqualIgnoringCase(marker_type, "Spelling")) |
+ if (DeprecatedEqualIgnoringCase(marker_type, "Spelling")) |
return DocumentMarker::kSpelling; |
- if (EqualIgnoringCase(marker_type, "Grammar")) |
+ if (DeprecatedEqualIgnoringCase(marker_type, "Grammar")) |
return DocumentMarker::kGrammar; |
- if (EqualIgnoringCase(marker_type, "TextMatch")) |
+ if (DeprecatedEqualIgnoringCase(marker_type, "TextMatch")) |
return DocumentMarker::kTextMatch; |
return WTF::kNullopt; |
} |
static WTF::Optional<DocumentMarker::MarkerTypes> MarkerTypesFrom( |
const String& marker_type) { |
- if (marker_type.IsEmpty() || EqualIgnoringCase(marker_type, "all")) |
+ if (marker_type.IsEmpty() || DeprecatedEqualIgnoringCase(marker_type, "all")) |
return DocumentMarker::AllMarkers(); |
WTF::Optional<DocumentMarker::MarkerType> type = MarkerTypeFrom(marker_type); |
if (!type) |