| Index: content/common/frame_owner_properties.cc
|
| diff --git a/content/common/frame_owner_properties.cc b/content/common/frame_owner_properties.cc
|
| index 8e0f7ead13abdc522b6321c170df42aec73656b3..8ddf049484d53e216ac47b917809c390f718d3cc 100644
|
| --- a/content/common/frame_owner_properties.cc
|
| +++ b/content/common/frame_owner_properties.cc
|
| @@ -11,7 +11,8 @@ FrameOwnerProperties::FrameOwnerProperties()
|
| margin_width(-1),
|
| margin_height(-1),
|
| allow_fullscreen(false),
|
| - allow_payment_request(false) {}
|
| + allow_payment_request(false),
|
| + is_display_none(false) {}
|
|
|
| FrameOwnerProperties::FrameOwnerProperties(const FrameOwnerProperties& other) =
|
| default;
|
| @@ -24,6 +25,7 @@ bool FrameOwnerProperties::operator==(const FrameOwnerProperties& other) const {
|
| margin_height == other.margin_height &&
|
| allow_fullscreen == other.allow_fullscreen &&
|
| allow_payment_request == other.allow_payment_request &&
|
| + is_display_none == other.is_display_none &&
|
| required_csp == other.required_csp &&
|
| std::equal(delegated_permissions.begin(), delegated_permissions.end(),
|
| other.delegated_permissions.begin()) &&
|
|
|