| Index: third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
|
| index aebb1dd2b5034d54fda9748e4f094926e98835b2..1d922648580522bbdc991f93b91a2196b883f854 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFrameOwnerElement.h
|
| @@ -59,8 +59,6 @@ public:
|
|
|
| Document* getSVGDocument(ExceptionState&) const;
|
|
|
| - virtual ScrollbarMode scrollingMode() const { return ScrollbarAuto; }
|
| -
|
| virtual bool loadedNonEmptyDocument() const { return false; }
|
| virtual void didLoadNonEmptyDocument() { }
|
|
|
| @@ -82,6 +80,9 @@ public:
|
| void dispatchLoad() override;
|
| SandboxFlags sandboxFlags() const override { return m_sandboxFlags; }
|
| void renderFallbackContent() override { }
|
| + ScrollbarMode scrollingMode() const override { return ScrollbarAuto; }
|
| + int marginWidth() const override { return -1; }
|
| + int marginHeight() const override { return -1; }
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|