Index: third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp b/third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp |
index dd96948d0882d56516c219bb525c6180c329766e..ebfbb928841e391b04c53454b3934bd2e699d016 100644 |
--- a/third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/WebFontDecoder.cpp |
@@ -176,8 +176,8 @@ void RecordDecodeSpeedHistogram(const char* data, |
// static |
bool WebFontDecoder::SupportsFormat(const String& format) { |
- return EqualIgnoringCase(format, "woff") || |
- EqualIgnoringCase(format, "woff2"); |
+ return DeprecatedEqualIgnoringCase(format, "woff") || |
+ DeprecatedEqualIgnoringCase(format, "woff2"); |
} |
sk_sp<SkTypeface> WebFontDecoder::Decode(SharedBuffer* buffer) { |