Changeset 204564 in webkit


Ignore:
Timestamp:
Aug 17, 2016 11:15:58 AM (8 years ago)
Author:
Antti Koivisto
Message:

Try to fix CMake build.

  • rendering/style/StyleCachedImage.cpp:

(WebCore::StyleCachedImage::cssValue):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r204563 r204564  
     12016-08-17  Antti Koivisto  <antti@apple.com>
     2
     3        Try to fix CMake build.
     4
     5        * rendering/style/StyleCachedImage.cpp:
     6        (WebCore::StyleCachedImage::cssValue):
     7
    182016-08-17  Chris Fleizach  <cfleizach@apple.com>
    29
  • trunk/Source/WebCore/rendering/style/StyleCachedImage.cpp

    r204560 r204564  
    4747PassRefPtr<CSSValue> StyleCachedImage::cssValue() const
    4848{
     49#if ENABLE(CSS_IMAGE_SET)
    4950    if (m_cssImageSetValue)
    5051        return const_cast<CSSImageSetValue*>(m_cssImageSetValue);
     52#endif
    5153    return CSSPrimitiveValue::create(m_image->url(), CSSPrimitiveValue::CSS_URI);
    5254}
Note: See TracChangeset for help on using the changeset viewer.