Searched refs:scrollDelta (Results 1 - 14 of 14) sorted by last modified time

/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DScrollAnimatorMac.h66 void sendContentAreaScrolledSoon(const FloatSize& scrollDelta);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.cpp267 IntSize scrollDelta = newOffset - m_scrollOffset; local
268 if (scrollDelta == IntSize())
276 m_pendingScrollDelta += scrollDelta;
278 scrollContents(scrollDelta);
532 IntSize scrollDelta = m_pendingScrollDelta;
534 scrollContents(scrollDelta);
537 void ScrollView::scrollContents(const IntSize& scrollDelta) argument
550 int panIconDirtySquareSizeLength = 2 * (panIconSizeLength + std::max(abs(scrollDelta.width()), abs(scrollDelta.height()))); // We only want to repaint what's necessary
557 if (!scrollContentsFastPath(-scrollDelta))
[all...]
H A DScrollView.h158 void scrollContents(const IntSize& scrollDelta);
270 virtual bool scrollContentsFastPath(const IntSize& scrollDelta) { return true; } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupListBox.cpp1029 IntSize scrollDelta = newOffset - m_scrollOffset; local
1030 if (scrollDelta == IntSize())
H A DWebViewImpl.cpp4235 void WebViewImpl::applyViewportDeltas(const WebSize& scrollDelta, float pageScaleDelta, float topControlsDelta) argument
4255 TRACE_EVENT_INSTANT2("blink", "WebViewImpl::applyScrollAndScale::scrollBy", "x", scrollDelta.width, "y", scrollDelta.height);
4257 IntPoint scrollOffset(webScrollOffset.width + scrollDelta.width, webScrollOffset.height + scrollDelta.height);
4263 scrollOffset.width += scrollDelta.width;
4264 scrollOffset.height += scrollDelta.height;
H A DWebViewImpl.h119 const WebSize& scrollDelta,
/external/chromium_org/third_party/WebKit/Source/web/painting/
H A DPaintAggregator.cpp127 ASSERT(!(scrollDelta.x() && scrollDelta.y()));
133 if (scrollDelta.x()) {
134 int dx = scrollDelta.x();
145 int dy = scrollDelta.y();
260 if ((dx && m_update.scrollDelta.y()) || (dy && m_update.scrollDelta.x())) {
268 m_update.scrollDelta.move(dx, dy);
271 if (m_update.scrollDelta == IntPoint()) {
339 m_update.scrollDelta
[all...]
H A DPaintAggregator.h46 // by the amount specified by |scrollDelta|. If |paintRects| is non-empty,
49 // |scrollDelta| can only specify scrolling in one direction (i.e., the x
56 // |scrollDelta|. This rect must be repainted.
62 blink::IntPoint scrollDelta; member in struct:blink::PaintAggregator::PendingUpdate
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DPaintAggregatorTest.cpp127 EXPECT_EQ(delta.x(), update.scrollDelta.x());
128 EXPECT_EQ(delta.y(), update.scrollDelta.y());
156 EXPECT_EQ(expectedDelta.x(), update.scrollDelta.x());
157 EXPECT_EQ(expectedDelta.y(), update.scrollDelta.y());
H A DWebFrameTest.cpp2214 IntSize scrollDelta = webViewImpl->fakePageScaleAnimationTargetPositionForTesting() - webViewImpl->mainFrameImpl()->frameView()->scrollPosition(); local
2216 webViewImpl->applyViewportDeltas(scrollDelta, scaleDelta, 0);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebWidget.h152 const WebSize& scrollDelta,
151 applyViewportDeltas( const WebSize& scrollDelta, float scaleFactor, float topControlsDelta) argument
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp1261 bool FrameView::scrollContentsFastPath(const IntSize& scrollDelta) argument
1298 previousRect.move(scrollDelta);
1318 scrolledRect.move(-scrollDelta);
H A DFrameView.h346 virtual bool scrollContentsFastPath(const IntSize& scrollDelta) OVERRIDE;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 228 milliseconds