Changeset 144823 in webkit


Ignore:
Timestamp:
Mar 5, 2013 2:47:02 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Compile fix after r144024.
https://bugs.webkit.org/show_bug.cgi?id=111306

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-03-05
Reviewed by James Robinson.

  • page/scrolling/ScrollingCoordinator.cpp: Added guard for USE(ACCELERATED_COMPOSITING).
  • page/scrolling/ScrollingCoordinator.h: Added guard for USE(ACCELERATED_COMPOSITING).
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r144821 r144823  
     12013-03-05  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compile fix after r144024.
     4        https://bugs.webkit.org/show_bug.cgi?id=111306
     5
     6        Reviewed by James Robinson.
     7
     8        * page/scrolling/ScrollingCoordinator.cpp: Added guard for USE(ACCELERATED_COMPOSITING).
     9        * page/scrolling/ScrollingCoordinator.h: Added guard for USE(ACCELERATED_COMPOSITING).
     10
    1112013-03-05  James Weatherall  <wez@chromium.org>
    212
  • trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp

    r144799 r144823  
    273273}
    274274
     275#if USE(ACCELERATED_COMPOSITING)
    275276GraphicsLayer* ScrollingCoordinator::scrollLayerForScrollableArea(ScrollableArea* scrollableArea)
    276277{
     
    292293#endif
    293294}
     295#endif
    294296
    295297GraphicsLayer* ScrollingCoordinator::verticalScrollbarLayerForScrollableArea(ScrollableArea* scrollableArea)
  • trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.h

    r144024 r144823  
    169169    explicit ScrollingCoordinator(Page*);
    170170
     171#if USE(ACCELERATED_COMPOSITING)
    171172    static GraphicsLayer* scrollLayerForScrollableArea(ScrollableArea*);
    172173    static GraphicsLayer* horizontalScrollbarLayerForScrollableArea(ScrollableArea*);
    173174    static GraphicsLayer* verticalScrollbarLayerForScrollableArea(ScrollableArea*);
     175#endif
    174176
    175177    unsigned computeCurrentWheelEventHandlerCount();
Note: See TracChangeset for help on using the changeset viewer.