Changeset 192197 in webkit


Ignore:
Timestamp:
Nov 9, 2015 6:22:09 PM (8 years ago)
Author:
Wenson Hsieh
Message:

Unreviewed, fix the windows build

Update the signature of scrollableAreaBoundingBox, changed by r192193.

  • platform/win/PopupMenuWin.cpp:

(WebCore::PopupMenuWin::scrollableAreaBoundingBox):

  • platform/win/PopupMenuWin.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r192194 r192197  
     12015-11-09  Wenson Hsieh  <wenson_hsieh@apple.com>
     2
     3        Unreviewed, fix the windows build
     4
     5        Update the signature of scrollableAreaBoundingBox, changed by r192193.
     6
     7        * platform/win/PopupMenuWin.cpp:
     8        (WebCore::PopupMenuWin::scrollableAreaBoundingBox):
     9        * platform/win/PopupMenuWin.h:
     10
    1112015-11-09  Simon Fraser  <simon.fraser@apple.com>
    212
  • trunk/Source/WebCore/platform/win/PopupMenuWin.cpp

    r192140 r192197  
    748748}
    749749
    750 IntRect PopupMenuWin::scrollableAreaBoundingBox() const
     750IntRect PopupMenuWin::scrollableAreaBoundingBox(bool*) const
    751751{
    752752    return m_windowRect;
  • trunk/Source/WebCore/platform/win/PopupMenuWin.h

    r183262 r192197  
    106106    virtual IntSize visibleSize() const override;
    107107    virtual IntSize contentsSize() const override;
    108     virtual IntRect scrollableAreaBoundingBox() const override;
     108    virtual IntRect scrollableAreaBoundingBox(bool* = nullptr) const override;
    109109    virtual bool updatesScrollLayerPositionOnMainThread() const override { return true; }
    110110    virtual bool forceUpdateScrollbarsOnMainThreadForPerformanceTesting() const override { return false; }
Note: See TracChangeset for help on using the changeset viewer.