Changeset 245066 in webkit


Ignore:
Timestamp:
May 8, 2019 1:32:24 PM (5 years ago)
Author:
don.olmstead@sony.com
Message:

WEBCORE_EXPORT shouldn't be on the class and its methods
https://bugs.webkit.org/show_bug.cgi?id=197681

Reviewed by Simon Fraser.

Remove WEBCORE_EXPORT from the methods.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r245062 r245066  
     12019-05-08  Don Olmstead  <don.olmstead@sony.com>
     2
     3        WEBCORE_EXPORT shouldn't be on the class and its methods
     4        https://bugs.webkit.org/show_bug.cgi?id=197681
     5
     6        Reviewed by Simon Fraser.
     7
     8        Remove WEBCORE_EXPORT from the methods.
     9
     10        * page/scrolling/ScrollingTreeFrameScrollingNode.h:
     11        * page/scrolling/ScrollingTreeScrollingNode.h:
     12
    1132019-05-08  Wenson Hsieh  <wenson_hsieh@apple.com>
    214
  • trunk/Source/WebCore/page/scrolling/ScrollingTreeFrameScrollingNode.h

    r242601 r245066  
    7070    LayoutPoint localToContentsPoint(LayoutPoint) const final;
    7171
    72     WEBCORE_EXPORT void updateViewportForCurrentScrollPosition(Optional<FloatRect>) override;
     72    void updateViewportForCurrentScrollPosition(Optional<FloatRect>) override;
    7373    bool scrollPositionAndLayoutViewportMatch(const FloatPoint& position, Optional<FloatRect> overrideLayoutViewport) override;
    7474
  • trunk/Source/WebCore/page/scrolling/ScrollingTreeScrollingNode.h

    r245006 r245066  
    102102
    103103    virtual void currentScrollPositionChanged();
    104     WEBCORE_EXPORT virtual void updateViewportForCurrentScrollPosition(Optional<FloatRect> = { }) { }
     104    virtual void updateViewportForCurrentScrollPosition(Optional<FloatRect> = { }) { }
    105105    virtual bool scrollPositionAndLayoutViewportMatch(const FloatPoint& position, Optional<FloatRect> overrideLayoutViewport);
    106106
    107     WEBCORE_EXPORT virtual void repositionScrollingLayers() { }
    108     WEBCORE_EXPORT virtual void repositionRelatedLayers() { }
     107    virtual void repositionScrollingLayers() { }
     108    virtual void repositionRelatedLayers() { }
    109109
    110110    void applyLayerPositions(const FloatRect& layoutViewport, FloatSize& cumulativeDelta) override;
Note: See TracChangeset for help on using the changeset viewer.