Searched defs:scrollViewRect (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp394 const IntRect& scrollViewRect,
393 scrollBackingStore(int dx, int dy, const IntRect& scrollViewRect, const IntRect& clipRect) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp436 void ChromeClientQt::scroll(const IntSize& delta, const IntRect& scrollViewRect, const IntRect&) argument
439 platformPageClient()->scroll(delta.width(), delta.height(), scrollViewRect);
440 emit m_webPage->scrollRequested(delta.width(), delta.height(), scrollViewRect);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebChromeClient.cpp484 void WebChromeClient::scroll(const IntSize& delta, const IntRect& scrollViewRect, const IntRect& clipRect) argument
488 m_webView->scrollBackingStore(core(m_webView->topLevelFrame())->view(), delta.width(), delta.height(), scrollViewRect, clipRect); local
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp669 IntRect scrollViewRect = convertToContainingWindow(IntRect(0, 0, visibleWidth(), visibleHeight())); local
674 scrollViewRect.setWidth(scrollViewRect.width() - verticalScrollbarWidth);
675 scrollViewRect.setHeight(scrollViewRect.height() - horizontalScrollbarHeight);
679 updateRect.intersect(scrollViewRect);
696 if (!scrollContentsFastPath(-scrollDelta, scrollViewRect, clipRect))
/external/webkit/Source/WebKit/win/
H A DWebView.cpp829 void WebView::scrollBackingStore(FrameView* frameView, int dx, int dy, const IntRect& scrollViewRect, const IntRect& clipRect) argument
835 m_backingLayer->setNeedsDisplayInRect(scrollViewRect);
859 RECT scrollRectWin(scrollViewRect);

Completed in 948 milliseconds