| 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 8d432b9d33916bfb93a65ca779f4225ee70d833b..9a5d150203a362f169b891cc39c2003cdc452cad 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<WebFeaturePolicyFeature>& allowedFeatures() const override {
|
| return m_allowedFeatures;
|
| @@ -64,6 +65,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 setAllowedFeatures(
|
| const WebVector<WebFeaturePolicyFeature>& allowedFeatures) {
|
| @@ -88,6 +90,7 @@ class RemoteFrameOwner final
|
| int m_marginHeight;
|
| bool m_allowFullscreen;
|
| bool m_allowPaymentRequest;
|
| + bool m_isDisplayNone;
|
| WebString m_csp;
|
| WebVector<WebFeaturePolicyFeature> m_allowedFeatures;
|
| };
|
|
|