Chromium Code Reviews| 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 d711d814993adb9c9cab407a1e1adf010fcfac8b..1688e5a3006c6ac9c6a943bb3726ee6ba475e1cd 100644 |
| --- a/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl |
| +++ b/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl |
| @@ -28,12 +28,6 @@ class CORE_EXPORT ComputedStyleBase { |
| {% endfor %} |
| {} |
| - ALWAYS_INLINE ComputedStyleBase(const ComputedStyleBase& o) : |
|
meade_UTC10
2017/03/10 04:09:11
Are we sure all the members of ComputedStyleBase w
shend
2017/03/10 05:54:52
Hopefully that won't happen :P Anyway, if one of t
|
| - {% for field in fields %} |
| - {{field.name}}(o.{{field.name}}){{print_if(not loop.last, ',')}} |
| - {% endfor %} |
| - {} |
| - |
| inline bool inheritedEqual(const ComputedStyleBase& o) const { |
| return ( |
| {% for field in fields if field.is_property and field.is_inherited %} |