Ignore:
Timestamp:
Feb 15, 2016, 4:28:20 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:
Fix the !(ENABLE(SVG_FONTS)
ENABLE(SVG_OTF_CONVERTER)) build after r196322

https://bugs.webkit.org/show_bug.cgi?id=154104

Reviewed by Myles C. Maxfield.

  • css/CSSFontFaceSource.cpp:

(WebCore::CSSFontFaceSource::CSSFontFaceSource):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSFontFaceSource.cpp

    r196481 r196576  
    7777    , m_font(font)
    7878    , m_face(owner)
     79#if ENABLE(SVG_FONTS) || ENABLE(SVG_OTF_CONVERTER)
    7980    , m_svgFontFaceElement(fontFace)
     81#endif
    8082{
     83#if !(ENABLE(SVG_FONTS) || ENABLE(SVG_OTF_CONVERTER))
     84    UNUSED_PARAM(fontFace);
     85#endif
     86
    8187    // This may synchronously call fontLoaded().
    8288    if (m_font)
Note: See TracChangeset for help on using the changeset viewer.