Ignore:
Timestamp:
Oct 3, 2013, 8:08:46 PM (12 years ago)
Author:
[email protected]
Message:

Remove shouldRubberBandInDirection from the WKBundlePageUIClient
https://bugs.webkit.org/show_bug.cgi?id=122309

Reviewed by Andreas Kling.

../WebCore:

  • loader/EmptyClients.h:
  • page/ChromeClient.h:
  • page/FrameView.cpp:
  • page/FrameView.h:
  • platform/ScrollableArea.h:
  • platform/mac/ScrollAnimatorMac.mm:

(WebCore::ScrollAnimatorMac::shouldRubberBandInDirection):

../WebKit/efl:

  • WebCoreSupport/ChromeClientEfl.h:

../WebKit/gtk:

  • WebCoreSupport/ChromeClientGtk.h:

../WebKit/mac:

  • WebCoreSupport/WebChromeClient.h:

../WebKit/win:

  • WebCoreSupport/WebChromeClient.h:

../WebKit/wince:

  • WebCoreSupport/ChromeClientWinCE.h:

../WebKit2:

WKBundlePageUIClient's shouldRubberBandInDirection has never worked with
threaded scrolling, so remove it.

  • WebProcess/InjectedBundle/API/c/WKBundlePage.h:
  • WebProcess/InjectedBundle/InjectedBundlePageUIClient.cpp:
  • WebProcess/InjectedBundle/InjectedBundlePageUIClient.h:
  • WebProcess/WebCoreSupport/WebChromeClient.cpp:
  • WebProcess/WebCoreSupport/WebChromeClient.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/page/FrameView.cpp

    r156822 r156871  
    20232023}
    20242024
    2025 bool FrameView::shouldRubberBandInDirection(ScrollDirection direction) const
    2026 {
    2027     if (Page* page = frame().page())
    2028         return page->chrome().client().shouldRubberBandInDirection(direction);
    2029     return ScrollView::shouldRubberBandInDirection(direction);
    2030 }
    2031 
    20322025bool FrameView::isRubberBandInProgress() const
    20332026{
Note: See TracChangeset for help on using the changeset viewer.