| Index: content/common/frame_owner_properties.cc
|
| diff --git a/content/common/frame_owner_properties.cc b/content/common/frame_owner_properties.cc
|
| index ef7dac1351ffe9c497944152533c1ffa8afaa858..8e0f7ead13abdc522b6321c170df42aec73656b3 100644
|
| --- a/content/common/frame_owner_properties.cc
|
| +++ b/content/common/frame_owner_properties.cc
|
| @@ -19,15 +19,16 @@ FrameOwnerProperties::FrameOwnerProperties(const FrameOwnerProperties& other) =
|
| FrameOwnerProperties::~FrameOwnerProperties() {}
|
|
|
| bool FrameOwnerProperties::operator==(const FrameOwnerProperties& other) const {
|
| - return name == other.name &&
|
| - scrolling_mode == other.scrolling_mode &&
|
| + return name == other.name && scrolling_mode == other.scrolling_mode &&
|
| margin_width == other.margin_width &&
|
| margin_height == other.margin_height &&
|
| allow_fullscreen == other.allow_fullscreen &&
|
| allow_payment_request == other.allow_payment_request &&
|
| required_csp == other.required_csp &&
|
| std::equal(delegated_permissions.begin(), delegated_permissions.end(),
|
| - other.delegated_permissions.begin());
|
| + other.delegated_permissions.begin()) &&
|
| + std::equal(allowed_features.begin(), allowed_features.end(),
|
| + other.allowed_features.begin());
|
| }
|
|
|
| } // namespace content
|
|
|