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

Unified Diff: third_party/WebKit/Source/platform/fonts/FontFaceCreationParams.h

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/FontFaceCreationParams.h
diff --git a/third_party/WebKit/Source/platform/fonts/FontFaceCreationParams.h b/third_party/WebKit/Source/platform/fonts/FontFaceCreationParams.h
index 2f66538812b7fcf667c9a73de5f26c8007121a7c..d8998837138a56edac80c1665187097db102dbc9 100644
--- a/third_party/WebKit/Source/platform/fonts/FontFaceCreationParams.h
+++ b/third_party/WebKit/Source/platform/fonts/FontFaceCreationParams.h
@@ -119,7 +119,7 @@ class FontFaceCreationParams {
bool operator==(const FontFaceCreationParams& other) const {
return creation_type_ == other.creation_type_ &&
- EqualIgnoringCase(family_, other.family_) &&
+ DeprecatedEqualIgnoringCase(family_, other.family_) &&
filename_ == other.filename_ &&
fontconfig_interface_id_ == other.fontconfig_interface_id_ &&
ttc_index_ == other.ttc_index_;

Powered by Google App Engine
This is Rietveld 408576698