| Index: Source/web/ChromeClientImpl.cpp
|
| diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
|
| index 0f36f758bda5900a1d208b698537399960b28487..521853860f5e206b2d031f47c79e2e535ff2097b 100644
|
| --- a/Source/web/ChromeClientImpl.cpp
|
| +++ b/Source/web/ChromeClientImpl.cpp
|
| @@ -529,6 +529,11 @@ void ChromeClientImpl::pageScaleFactorChanged() const
|
| m_webView->pageScaleFactorChanged();
|
| }
|
|
|
| +float ChromeClientImpl::clampPageScaleFactorToLimits(float scale) const
|
| +{
|
| + return m_webView->clampPageScaleFactorToLimits(scale);
|
| +}
|
| +
|
| void ChromeClientImpl::layoutUpdated(LocalFrame* frame) const
|
| {
|
| m_webView->layoutUpdated(WebLocalFrameImpl::fromFrame(frame));
|
|
|