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 6a4388dcd56d10b8a41dc71d010ac080f3a02e2e..6a2a91401b5b39045c7bc04ffdacf2f0d4258622 100644 |
--- a/third_party/WebKit/Source/core/frame/FrameOwner.h |
+++ b/third_party/WebKit/Source/core/frame/FrameOwner.h |
@@ -48,7 +48,6 @@ |
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<mojom::blink::PermissionName>& delegatedPermissions() |
const = 0; |
@@ -83,7 +82,6 @@ |
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<mojom::blink::PermissionName>& delegatedPermissions() |
const override { |