Chromium Code Reviews| Index: Source/web/WebLocalFrameImpl.cpp |
| diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp |
| index 7f1419d3d9cfcee8c913fc95965de2874d87167a..976f27ca4093ce89693f8d308997eea6b83021f8 100644 |
| --- a/Source/web/WebLocalFrameImpl.cpp |
| +++ b/Source/web/WebLocalFrameImpl.cpp |
| @@ -691,7 +691,7 @@ WebSize WebLocalFrameImpl::maximumScrollOffset() const |
| void WebLocalFrameImpl::setScrollOffset(const WebSize& offset) |
| { |
| if (FrameView* view = frameView()) |
| - view->setScrollOffset(IntPoint(offset.width, offset.height)); |
| + view->notifyScrollPositionChanged(IntPoint(offset.width, offset.height)); |
|
skobes
2015/06/03 16:57:57
One step closer to making FrameView::setScrollOffs
bokan
2015/06/03 17:04:58
I made it private in the mega patch :)
|
| } |
| WebSize WebLocalFrameImpl::contentsSize() const |