Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
index 327ccfd7a8de28705e711b5d2d29e61d826b903c..2a243a2a95242d4a129a5349d51f69479a7b2561 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -605,14 +605,15 @@ bool WebLocalFrameImpl::isFocused() const { |
WebSize WebLocalFrameImpl::scrollOffset() const { |
if (ScrollableArea* scrollableArea = layoutViewportScrollableArea()) |
- return toIntSize(scrollableArea->scrollPosition()); |
+ return scrollableArea->scrollOffsetInt(); |
return WebSize(); |
} |
void WebLocalFrameImpl::setScrollOffset(const WebSize& offset) { |
- if (ScrollableArea* scrollableArea = layoutViewportScrollableArea()) |
- scrollableArea->setScrollPosition(IntPoint(offset.width, offset.height), |
- ProgrammaticScroll); |
+ if (ScrollableArea* scrollableArea = layoutViewportScrollableArea()) { |
+ scrollableArea->setScrollOffset(ScrollOffset(offset.width, offset.height), |
+ ProgrammaticScroll); |
+ } |
} |
WebSize WebLocalFrameImpl::contentsSize() const { |