| Index: third_party/WebKit/Source/web/ResizeViewportAnchor.cpp
|
| diff --git a/third_party/WebKit/Source/web/ResizeViewportAnchor.cpp b/third_party/WebKit/Source/web/ResizeViewportAnchor.cpp
|
| index 0be18f6de3874069d811faa06c692c008de4299b..8c79f083d325094e0a910dd469f64936fe9b733a 100644
|
| --- a/third_party/WebKit/Source/web/ResizeViewportAnchor.cpp
|
| +++ b/third_party/WebKit/Source/web/ResizeViewportAnchor.cpp
|
| @@ -14,13 +14,13 @@ namespace blink {
|
|
|
| ResizeViewportAnchor::ResizeViewportAnchor(FrameView& rootFrameView, VisualViewport& visualViewport)
|
| : ViewportAnchor(rootFrameView, visualViewport)
|
| - , m_visualViewportInDocument(rootFrameView.scrollableArea()->visibleContentRectDouble().location())
|
| + , m_visualViewportInDocument(rootFrameView.getScrollableArea()->visibleContentRectDouble().location())
|
| {
|
| }
|
|
|
| ResizeViewportAnchor::~ResizeViewportAnchor()
|
| {
|
| - m_rootFrameView->scrollableArea()->setScrollPosition(m_visualViewportInDocument, ProgrammaticScroll);
|
| + m_rootFrameView->getScrollableArea()->setScrollPosition(m_visualViewportInDocument, ProgrammaticScroll);
|
| }
|
|
|
| } // namespace blink
|
|
|