| Index: third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| index 6e2e03c71410f420ac297204b8949624d969199d..b67743405b7bb8cfb4671884f224aa520fb72868 100644
|
| --- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
|
| @@ -41,6 +41,11 @@ WebSize WebViewFrameWidget::size()
|
| return m_webView->size();
|
| }
|
|
|
| +void WebViewFrameWidget::resize(const WebSize& size, float topControlsHeight, bool topControlsShrinkLayoutSize)
|
| +{
|
| + return m_webView->resize(size, topControlsHeight, topControlsShrinkLayoutSize);
|
| +}
|
| +
|
| void WebViewFrameWidget::resize(const WebSize& size)
|
| {
|
| return m_webView->resize(size);
|
| @@ -240,11 +245,6 @@ WebPagePopup* WebViewFrameWidget::pagePopup() const
|
| return m_webView->pagePopup();
|
| }
|
|
|
| -void WebViewFrameWidget::setTopControlsHeight(float height, bool topControlsShrinkLayoutSize)
|
| -{
|
| - return m_webView->setTopControlsHeight(height, topControlsShrinkLayoutSize);
|
| -}
|
| -
|
| void WebViewFrameWidget::updateTopControlsState(WebTopControlsState constraints, WebTopControlsState current, bool animate)
|
| {
|
| return m_webView->updateTopControlsState(constraints, current, animate);
|
|
|