| Index: third_party/WebKit/Source/core/page/ChromeClient.h
|
| diff --git a/third_party/WebKit/Source/core/page/ChromeClient.h b/third_party/WebKit/Source/core/page/ChromeClient.h
|
| index 96edc52926c2cd059f6da48a9bfa32a9162ca93c..a9179a01011e10c4716dd4c6a7c0b4c9f5bb1cf0 100644
|
| --- a/third_party/WebKit/Source/core/page/ChromeClient.h
|
| +++ b/third_party/WebKit/Source/core/page/ChromeClient.h
|
| @@ -39,6 +39,7 @@
|
| #include "public/platform/WebEventListenerProperties.h"
|
| #include "public/platform/WebFocusType.h"
|
| #include "wtf/Forward.h"
|
| +#include "wtf/Optional.h"
|
| #include "wtf/Vector.h"
|
| #include <memory>
|
|
|
| @@ -164,11 +165,15 @@ public:
|
| // End methods used by HostWindow.
|
| virtual Cursor lastSetCursorForTesting() const = 0;
|
|
|
| + // Returns a custom visible content rect if a viewport override is active.
|
| + virtual WTF::Optional<IntRect> visibleContentRectForPainting() const { return WTF::nullopt; }
|
| +
|
| virtual void dispatchViewportPropertiesDidChange(const ViewportDescription&) const { }
|
|
|
| virtual void contentsSizeChanged(LocalFrame*, const IntSize&) const = 0;
|
| virtual void pageScaleFactorChanged() const { }
|
| virtual float clampPageScaleFactorToLimits(float scale) const { return scale; }
|
| + virtual void mainFrameScrollOffsetChanged() const { }
|
| virtual void layoutUpdated(LocalFrame*) const { }
|
|
|
| void mouseDidMoveOverElement(const HitTestResult&);
|
|
|