Changeset 158856 in webkit


Ignore:
Timestamp:
Nov 7, 2013, 11:04:53 AM (11 years ago)
Author:
jer.noble@apple.com
Message:

Unreviewed Win build fix after r158855; wrap shapeInfoForFloat() in an ENABLE(CSS_SHAPES) guard.

  • rendering/FloatingObjects.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Source/WebCore/ChangeLog

    r158855 r158856  
     12013-11-07  Jer Noble  <jer.noble@apple.com>
     2
     3        Unreviewed Win build fix after r158855; wrap shapeInfoForFloat() in an ENABLE(CSS_SHAPES) guard.
     4
     5        * rendering/FloatingObjects.cpp:
     6
    172013-11-07  Bem Jones-Bey  <bjonesbe@adobe.com>
    28
  • TabularUnified trunk/Source/WebCore/rendering/FloatingObjects.cpp

    r158855 r158856  
    268268}
    269269
     270#if ENABLE(CSS_SHAPES)
    270271static inline ShapeOutsideInfo* shapeInfoForFloat(const FloatingObject* floatingObject, const RenderBlockFlow* containingBlock, LayoutUnit lineTop, LayoutUnit lineBottom)
    271272{
     
    279280    return 0;
    280281}
     282#endif
    281283
    282284template<>
Note: See TracChangeset for help on using the changeset viewer.