| Index: third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp b/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
|
| index b718b509c251e0d13c6ca47316d10e3e08f1fd03..8b2e6c2ab3ffdcd65490bc25090a969c56a69c9b 100644
|
| --- a/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/RootFrameViewport.cpp
|
| @@ -303,9 +303,9 @@ bool RootFrameViewport::scrollAnimatorEnabled() const
|
| return layoutViewport().scrollAnimatorEnabled();
|
| }
|
|
|
| -HostWindow* RootFrameViewport::hostWindow() const
|
| +HostWindow* RootFrameViewport::getHostWindow() const
|
| {
|
| - return layoutViewport().hostWindow();
|
| + return layoutViewport().getHostWindow();
|
| }
|
|
|
| void RootFrameViewport::serviceScrollAnimations(double monotonicTime)
|
| @@ -329,9 +329,9 @@ void RootFrameViewport::cancelProgrammaticScrollAnimation()
|
| visualViewport().cancelProgrammaticScrollAnimation();
|
| }
|
|
|
| -Widget* RootFrameViewport::widget()
|
| +Widget* RootFrameViewport::getWidget()
|
| {
|
| - return visualViewport().widget();
|
| + return visualViewport().getWidget();
|
| }
|
|
|
| void RootFrameViewport::clearScrollAnimators()
|
|
|