Index: third_party/WebKit/public/web/WebFrameOwnerProperties.h |
diff --git a/third_party/WebKit/public/web/WebFrameOwnerProperties.h b/third_party/WebKit/public/web/WebFrameOwnerProperties.h |
index ba6ccef5480d638629a8f79dcf65d361f46d6316..f7f6e65147bec6d4744f124d5b64bbfe8bb7c1a6 100644 |
--- a/third_party/WebKit/public/web/WebFrameOwnerProperties.h |
+++ b/third_party/WebKit/public/web/WebFrameOwnerProperties.h |
@@ -43,22 +43,6 @@ struct WebFrameOwnerProperties { |
{ |
} |
#endif |
- |
- bool operator==(const WebFrameOwnerProperties& other) const |
- { |
- return scrollingMode == other.scrollingMode |
- && marginWidth == other.marginWidth |
- && marginHeight == other.marginHeight |
- && allowFullscreen == other.allowFullscreen |
- && std::equal(delegatedPermissions.begin(), |
- delegatedPermissions.end(), |
- other.delegatedPermissions.begin()); |
- } |
- |
- bool operator!=(const WebFrameOwnerProperties& other) const |
- { |
- return !(*this == other); |
- } |
}; |
} // namespace blink |