| Index: third_party/WebKit/Source/core/page/Page.h
|
| diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h
|
| index 8fbd28db016790081b5c023837ae682427478ca2..9c429bdd5873544f01dbf84533fe3ffe95f20873 100644
|
| --- a/third_party/WebKit/Source/core/page/Page.h
|
| +++ b/third_party/WebKit/Source/core/page/Page.h
|
| @@ -58,6 +58,7 @@ class EditorClient;
|
| class FocusController;
|
| class Frame;
|
| class FrameHost;
|
| +struct PageScaleConstraints;
|
| class PageScaleConstraintsSet;
|
| class PluginData;
|
| class PointerLockController;
|
| @@ -226,6 +227,10 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
|
| bool isCursorVisible() const;
|
| void setIsCursorVisible(bool isVisible) { m_isCursorVisible = isVisible; }
|
|
|
| + void setDefaultPageScaleLimits(float minScale, float maxScale);
|
| + void setUserAgentPageScaleConstraints(
|
| + const PageScaleConstraints& newConstraints);
|
| +
|
| #if DCHECK_IS_ON()
|
| void setIsPainting(bool painting) { m_isPainting = painting; }
|
| bool isPainting() const { return m_isPainting; }
|
|
|