| Index: third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| index c73faf4a3288b396f5702187ee73b91359c787ca..4576b2ee268811a663d51a7e2836b1f2bc959e1d 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| @@ -290,12 +290,12 @@ void LocalFrame::createView(const IntSize& viewportSize,
|
|
|
| FrameView* frameView = nullptr;
|
| if (isLocalRoot) {
|
| - frameView = FrameView::create(this, viewportSize);
|
| + frameView = FrameView::create(*this, viewportSize);
|
|
|
| // The layout size is set by WebViewImpl to support @viewport
|
| frameView->setLayoutSizeFixedToFrameSize(false);
|
| } else {
|
| - frameView = FrameView::create(this);
|
| + frameView = FrameView::create(*this);
|
| }
|
|
|
| frameView->setScrollbarModes(horizontalScrollbarMode, verticalScrollbarMode,
|
|
|