Changeset 168662 in webkit


Ignore:
Timestamp:
May 12, 2014 5:21:04 PM (10 years ago)
Author:
Simon Fraser
Message:

Fix the iOS build.

  • page/scrolling/ScrollingCoordinator.cpp:

(WebCore::ScrollingCoordinator::contentShadowLayerForFrameView):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r168661 r168662  
     12014-05-12  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix the iOS build.
     4
     5        * page/scrolling/ScrollingCoordinator.cpp:
     6        (WebCore::ScrollingCoordinator::contentShadowLayerForFrameView):
     7
    182014-05-12  Simon Fraser  <simon.fraser@apple.com>
    29
  • trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp

    r168655 r168662  
    258258GraphicsLayer* ScrollingCoordinator::contentShadowLayerForFrameView(FrameView* frameView)
    259259{
     260#if ENABLE(RUBBER_BANDING)
    260261    if (RenderView* renderView = frameView->frame().contentRenderer())
    261262        return renderView->compositor().layerForContentShadow();
    262     return nullptr;
     263#else
     264    UNUSED_PARAM(frameView);
     265    return nullptr;
     266#endif
    263267}
    264268
Note: See TracChangeset for help on using the changeset viewer.