Changeset 175584 in webkit


Ignore:
Timestamp:
Nov 4, 2014 3:14:32 PM (9 years ago)
Author:
akling@apple.com
Message:

Remove two unused ScrollingCoordinator methods.
<https://webkit.org/b/138377>

Reviewed by Chris Dumez.

These appear to be leftovers from the now-defunct chromium port.

  • page/scrolling/ScrollingCoordinator.cpp:

(WebCore::ScrollingCoordinator::horizontalScrollbarLayerForScrollableArea): Deleted.
(WebCore::ScrollingCoordinator::verticalScrollbarLayerForScrollableArea): Deleted.

  • page/scrolling/ScrollingCoordinator.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r175583 r175584  
     12014-11-04  Andreas Kling  <akling@apple.com>
     2
     3        Remove two unused ScrollingCoordinator methods.
     4        <https://webkit.org/b/138377>
     5
     6        Reviewed by Chris Dumez.
     7
     8        These appear to be leftovers from the now-defunct chromium port.
     9
     10        * page/scrolling/ScrollingCoordinator.cpp:
     11        (WebCore::ScrollingCoordinator::horizontalScrollbarLayerForScrollableArea): Deleted.
     12        (WebCore::ScrollingCoordinator::verticalScrollbarLayerForScrollableArea): Deleted.
     13        * page/scrolling/ScrollingCoordinator.h:
     14
    1152014-11-04  Chris Dumez  <cdumez@apple.com>
    216
  • trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.cpp

    r174587 r175584  
    200200}
    201201
    202 GraphicsLayer* ScrollingCoordinator::horizontalScrollbarLayerForScrollableArea(ScrollableArea* scrollableArea)
    203 {
    204     return scrollableArea->layerForHorizontalScrollbar();
    205 }
    206 
    207 GraphicsLayer* ScrollingCoordinator::verticalScrollbarLayerForScrollableArea(ScrollableArea* scrollableArea)
    208 {
    209     return scrollableArea->layerForVerticalScrollbar();
    210 }
    211 
    212202GraphicsLayer* ScrollingCoordinator::scrollLayerForFrameView(FrameView* frameView)
    213203{
  • trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.h

    r174340 r175584  
    210210
    211211    static GraphicsLayer* scrollLayerForScrollableArea(ScrollableArea*);
    212     static GraphicsLayer* horizontalScrollbarLayerForScrollableArea(ScrollableArea*);
    213     static GraphicsLayer* verticalScrollbarLayerForScrollableArea(ScrollableArea*);
    214212
    215213    unsigned computeCurrentWheelEventHandlerCount();
Note: See TracChangeset for help on using the changeset viewer.