| Index: third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl
|
| index ee5553b05ef66cb502fc93894463abb839c190f0..cb055de90f1d00f40c786532f69a0343d83fb5af 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl
|
| @@ -35,16 +35,6 @@ class CORE_EXPORT ComputedStyleBase {
|
| {% endfor %}
|
| {}
|
|
|
| - bool operator==(const ComputedStyleBase& o) const {
|
| - return (
|
| - {% for field in fields %}
|
| - {{field.name}} == o.{{field.name}}{{print_if(not loop.last, ' &&')}}
|
| - {% endfor %}
|
| - );
|
| - }
|
| -
|
| - bool operator!=(const ComputedStyleBase& o) const { return !(*this == o); }
|
| -
|
| inline bool inheritedEqual(const ComputedStyleBase& o) const {
|
| return (
|
| {% for field in fields if field.is_property and field.is_inherited %}
|
|
|