| Index: third_party/WebKit/Source/core/frame/FrameOwner.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameOwner.h b/third_party/WebKit/Source/core/frame/FrameOwner.h
|
| index 352d8ed4f7033308c419c75be0fa8e484b78769e..7c20aaf1e45766f48ffcd8435c4e6933cf1eb569 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameOwner.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameOwner.h
|
| @@ -43,6 +43,7 @@ class CORE_EXPORT FrameOwner : public GarbageCollectedMixin {
|
| virtual int marginHeight() const = 0;
|
| virtual bool allowFullscreen() const = 0;
|
| virtual bool allowPaymentRequest() const = 0;
|
| + virtual bool isDisplayNone() const = 0;
|
| virtual AtomicString csp() const = 0;
|
| virtual const WebVector<WebPermissionType>& delegatedPermissions() const = 0;
|
| };
|
| @@ -69,6 +70,7 @@ class CORE_EXPORT DummyFrameOwner
|
| int marginHeight() const override { return -1; }
|
| bool allowFullscreen() const override { return false; }
|
| bool allowPaymentRequest() const override { return false; }
|
| + bool isDisplayNone() const override { return false; }
|
| AtomicString csp() const override { return nullAtom; }
|
| const WebVector<WebPermissionType>& delegatedPermissions() const override {
|
| DEFINE_STATIC_LOCAL(WebVector<WebPermissionType>, permissions, ());
|
|
|