RESOLVED FIXED 148218
[OS X] Remove dead code from FontCache::systemFallbackForCharacters()
https://bugs.webkit.org/show_bug.cgi?id=148218
Summary [OS X] Remove dead code from FontCache::systemFallbackForCharacters()
Myles C. Maxfield
Reported 2015-08-20 01:45:36 PDT
[OS X] Remove dead code from FontCache::systemFallbackForCharacters()
Attachments
Patch (2.36 KB, patch)
2015-08-20 01:47 PDT, Myles C. Maxfield
no flags
Patch (3.38 KB, patch)
2015-08-20 19:45 PDT, Myles C. Maxfield
dbates: review+
Myles C. Maxfield
Comment 1 2015-08-20 01:47:19 PDT
Myles C. Maxfield
Comment 2 2015-08-20 01:55:14 PDT
Comment on attachment 259460 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259460&action=review > Source/WebCore/platform/graphics/mac/FontCacheMac.mm:-565 > - if (NSFont *bestVariation = [fontManager fontWithFamily:[substituteFont familyName] traits:traits weight:weight size:size]) { No need for the "size" variable
Myles C. Maxfield
Comment 3 2015-08-20 19:45:03 PDT
Daniel Bates
Comment 4 2015-08-21 11:17:57 PDT
Comment on attachment 259567 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259567&action=review > Source/WebCore/ChangeLog:8 > + CTFontCreateForCharactersWithLanguage() will always return the best For your consideration, I suggest writing this sentence in terms of FontCache::lookupCTFont() (which calls CTFontCreateForCharactersWithLanguage() at the time of writing) instead of CTFontCreateForCharactersWithLanguage() since FontCache::systemFallbackForCharacters() does not explicitly call CTFontCreateForCharactersWithLanguage(). > Source/WebCore/ChangeLog:10 > + font. Also, all fonts that will be created on WebKit's behalf are > + already printer fonts. You may want to consider adding a comment to the code to explain that FontCache::lookupCTFont()/CTFontCreateForCharactersWithLanguage() will return a printer-friendly font. > Source/WebCore/platform/graphics/mac/FontCacheMac.mm:-543 > - CGFloat size; With the removal of this size variable and associated logic the comment above fontManager is now out-of-date. Please update the comment above fontManager.
Myles C. Maxfield
Comment 5 2015-08-21 16:43:08 PDT
Comment on attachment 259567 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259567&action=review >> Source/WebCore/ChangeLog:10 >> + already printer fonts. > > You may want to consider adding a comment to the code to explain that FontCache::lookupCTFont()/CTFontCreateForCharactersWithLanguage() will return a printer-friendly font. Going forward, the concept of a "printer font" will become less and less relevant. I don't think it's worth paying it any more lip service.
Myles C. Maxfield
Comment 6 2015-08-21 16:50:40 PDT
Note You need to log in before you can comment on or make changes to this bug.