| Index: third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
|
| diff --git a/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm b/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
|
| index 7c5876b6b2fa762003c735e9d737b44bf0ee618e..ce91e405d01996c1586ca36bb2a7394e29551fcb 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
|
| +++ b/third_party/WebKit/Source/platform/fonts/mac/FontCacheMac.mm
|
| @@ -59,7 +59,7 @@ + (NSFont*)findFontLike:(NSFont*)font
|
|
|
| namespace blink {
|
|
|
| -const char* g_k_color_emoji_font_mac = "Apple Color Emoji";
|
| +const char kColorEmojiFontMac[] = "Apple Color Emoji";
|
|
|
| // static
|
| const AtomicString& FontCache::LegacySystemFontFamily() {
|
| @@ -115,7 +115,7 @@ static inline bool IsAppKitFontWeightBold(NSInteger app_kit_font_weight) {
|
| FontFallbackPriority fallback_priority) {
|
| if (fallback_priority == FontFallbackPriority::kEmojiEmoji) {
|
| RefPtr<SimpleFontData> emoji_font =
|
| - GetFontData(font_description, AtomicString(g_k_color_emoji_font_mac));
|
| + GetFontData(font_description, AtomicString(kColorEmojiFontMac));
|
| if (emoji_font)
|
| return emoji_font;
|
| }
|
|
|