| Index: third_party/WebKit/Source/web/RemoteFrameOwner.h
|
| diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.h b/third_party/WebKit/Source/web/RemoteFrameOwner.h
|
| index 428f5b87f9aca19bc9d3ed9d5559eedc7da15cd9..dec8d61092b0242bc3418f32a111018a031d3457 100644
|
| --- a/third_party/WebKit/Source/web/RemoteFrameOwner.h
|
| +++ b/third_party/WebKit/Source/web/RemoteFrameOwner.h
|
| @@ -47,6 +47,7 @@ class RemoteFrameOwner final
|
| int marginHeight() const override { return m_marginHeight; }
|
| bool allowFullscreen() const override { return m_allowFullscreen; }
|
| bool allowPaymentRequest() const override { return m_allowPaymentRequest; }
|
| + bool isDisplayNone() const override { return m_isDisplayNone; }
|
| AtomicString csp() const override { return m_csp; }
|
| const WebVector<mojom::blink::PermissionName>& delegatedPermissions()
|
| const override {
|
| @@ -68,6 +69,7 @@ class RemoteFrameOwner final
|
| void setAllowPaymentRequest(bool allowPaymentRequest) {
|
| m_allowPaymentRequest = allowPaymentRequest;
|
| }
|
| + void setIsDisplayNone(bool isDisplayNone) { m_isDisplayNone = isDisplayNone; }
|
| void setCsp(const WebString& csp) { m_csp = csp; }
|
| void setDelegatedpermissions(
|
| const WebVector<mojom::blink::PermissionName>& delegatedPermissions) {
|
| @@ -96,6 +98,7 @@ class RemoteFrameOwner final
|
| int m_marginHeight;
|
| bool m_allowFullscreen;
|
| bool m_allowPaymentRequest;
|
| + bool m_isDisplayNone;
|
| WebString m_csp;
|
| WebVector<mojom::blink::PermissionName> m_delegatedPermissions;
|
| WebVector<WebFeaturePolicyFeature> m_allowedFeatures;
|
|
|