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

Unified Diff: third_party/WebKit/Source/platform/fonts/WebFontDecoder.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/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) {

Powered by Google App Engine
This is Rietveld 408576698