| Index: Source/web/ChromeClientImpl.cpp
|
| diff --git a/Source/web/ChromeClientImpl.cpp b/Source/web/ChromeClientImpl.cpp
|
| index 7352ba76f15868e74bc845aa729f4e2571fbab84..aeb7cb589e3819c66c5f41575fb4089b3c9fe137 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));
|
|
|