Changeset 222908 in webkit


Ignore:
Timestamp:
Oct 5, 2017 3:49:45 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Fix build after Bug 167956
https://bugs.webkit.org/show_bug.cgi?id=177921

Patch by Fujii Hironori <Fujii Hironori> on 2017-10-05
Reviewed by Carlos Garcia Campos.

FontCascade::fontForCombiningCharacterSequence wasn't defined for
WinCairo port. It should be defined if !USE(HARFBUZZ).

No new tests because there is no behavior change.

  • platform/graphics/FontCascade.cpp: Use !USE(HARFBUZZ) instead of !USE(CAIRO).
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r222906 r222908  
     12017-10-05  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [WinCairo] Fix build after Bug 167956
     4        https://bugs.webkit.org/show_bug.cgi?id=177921
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        FontCascade::fontForCombiningCharacterSequence wasn't defined for
     9        WinCairo port. It should be defined if !USE(HARFBUZZ).
     10
     11        No new tests because there is no behavior change.
     12
     13        * platform/graphics/FontCascade.cpp: Use !USE(HARFBUZZ) instead of !USE(CAIRO).
     14
    1152017-10-05  Zan Dobersek  <zdobersek@igalia.com>
    216
  • trunk/Source/WebCore/platform/graphics/FontCascade.cpp

    r222843 r222908  
    15941594#endif
    15951595
    1596 #if !PLATFORM(COCOA) && !USE(CAIRO)
     1596#if !PLATFORM(COCOA) && !USE(HARFBUZZ)
    15971597// FIXME: Unify this with the macOS and iOS implementation.
    15981598const Font* FontCascade::fontForCombiningCharacterSequence(const UChar* characters, size_t length) const
Note: See TracChangeset for help on using the changeset viewer.