| Index: third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp b/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
|
| index dd76ff03fd77a41915ed94c613caa233bc984937..f48e66755785368f2a165a1403ced0f7c586bd28 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebInputEventConversionTest.cpp
|
| @@ -679,7 +679,7 @@ TEST(WebInputEventConversionTest, VisualViewportOffset) {
|
| webViewImpl->setPageScaleFactor(2);
|
|
|
| IntPoint visualOffset(35, 60);
|
| - webViewImpl->page()->frameHost().visualViewport().setLocation(visualOffset);
|
| + webViewImpl->page()->visualViewport().setLocation(visualOffset);
|
|
|
| FrameView* view = toLocalFrame(webViewImpl->page()->mainFrame())->view();
|
|
|
| @@ -820,7 +820,7 @@ TEST(WebInputEventConversionTest, ElasticOverscroll) {
|
| float pageScale = 2;
|
| webViewImpl->setPageScaleFactor(pageScale);
|
| IntPoint visualOffset(35, 60);
|
| - webViewImpl->page()->frameHost().visualViewport().setLocation(visualOffset);
|
| + webViewImpl->page()->visualViewport().setLocation(visualOffset);
|
| {
|
| WebMouseEvent webMouseEvent(WebInputEvent::MouseMove,
|
| WebInputEvent::NoModifiers,
|
|
|