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

Unified Diff: third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.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/FontCustomPlatformData.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp b/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
index eb626307fd5cb530070f50fa10c63c624741db1d..b131898f4b258c8e618b45d4fc53794226039da9 100644
--- a/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
+++ b/third_party/WebKit/Source/platform/fonts/FontCustomPlatformData.cpp
@@ -121,8 +121,8 @@ PassRefPtr<FontCustomPlatformData> FontCustomPlatformData::Create(
}
bool FontCustomPlatformData::SupportsFormat(const String& format) {
- return EqualIgnoringCase(format, "truetype") ||
- EqualIgnoringCase(format, "opentype") ||
+ return DeprecatedEqualIgnoringCase(format, "truetype") ||
+ DeprecatedEqualIgnoringCase(format, "opentype") ||
WebFontDecoder::SupportsFormat(format);
}

Powered by Google App Engine
This is Rietveld 408576698