| Index: third_party/WebKit/Source/core/frame/FrameHost.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameHost.cpp b/third_party/WebKit/Source/core/frame/FrameHost.cpp
|
| index b9b1ea2d08b3f812432803d330eecbfc64fa06c6..c8393af9e00a5cc04cbeac6c1484c57163844ace 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameHost.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameHost.cpp
|
| @@ -33,7 +33,6 @@
|
| #include "core/frame/BrowserControls.h"
|
| #include "core/frame/EventHandlerRegistry.h"
|
| #include "core/frame/FrameView.h"
|
| -#include "core/frame/PageScaleConstraints.h"
|
| #include "core/frame/VisualViewport.h"
|
| #include "core/inspector/ConsoleMessageStorage.h"
|
| #include "core/page/Page.h"
|
| @@ -154,13 +153,4 @@ int FrameHost::subframeCount() const {
|
| return m_subframeCount;
|
| }
|
|
|
| -void FrameHost::setDefaultPageScaleLimits(float minScale, float maxScale) {
|
| - page().setDefaultPageScaleLimits(minScale, maxScale);
|
| -}
|
| -
|
| -void FrameHost::setUserAgentPageScaleConstraints(
|
| - const PageScaleConstraints& newConstraints) {
|
| - page().setUserAgentPageScaleConstraints(newConstraints);
|
| -}
|
| -
|
| } // namespace blink
|
|
|