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..2bcc53e3fcf2366c35e43d734b18208963953b1a 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_feature_names.begin(), allowed_feature_names.end(), |
+ other.allowed_feature_names.begin()); |
} |
} // namespace content |