Changeset 156924 in webkit for trunk/Source/WebCore/page/Page.cpp
- Timestamp:
- Oct 4, 2013, 4:25:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/page/Page.cpp
r156876 r156924 838 838 } 839 839 840 bool Page::rubberBandsAtBottom()841 {842 if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator())843 return scrollingCoordinator->rubberBandsAtBottom();844 845 return false;846 }847 848 void Page::setRubberBandsAtBottom(bool rubberBandsAtBottom)849 {850 if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator())851 scrollingCoordinator->setRubberBandsAtBottom(rubberBandsAtBottom);852 }853 854 bool Page::rubberBandsAtTop()855 {856 if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator())857 return scrollingCoordinator->rubberBandsAtTop();858 859 return false;860 }861 862 void Page::setRubberBandsAtTop(bool rubberBandsAtTop)863 {864 if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator())865 scrollingCoordinator->setRubberBandsAtTop(rubberBandsAtTop);866 }867 868 840 void Page::setPagination(const Pagination& pagination) 869 841 {
Note:
See TracChangeset
for help on using the changeset viewer.