Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: third_party/WebKit/Source/build/scripts/templates/fields/storage_only.tmpl

Issue 2855583002: Fix ComputedStyleBase.h.tmpl to generate accessors for fields on groups (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/build/scripts/templates/fields/external.tmpl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% import 'fields/base.tmpl' as base %} 1 {% import 'fields/base.tmpl' as base %}
2 2
3 {% macro decl_public_methods(field) -%} 3 {% macro decl_public_methods(field) -%}
4 // Getters and setters not generated 4 // Getters and setters not generated
5 {%- endmacro %} 5 {%- endmacro %}
6 6
7 {% macro decl_protected_methods(field) -%} 7 {% macro decl_protected_methods(field) -%}
8 {{base.decl_internal_getter_method(field)}}
9 {{base.decl_internal_setter_method(field)}}
8 {% if not field.is_bit_field -%} 10 {% if not field.is_bit_field -%}
9 {{base.decl_mutable_method(field)}} 11 {{base.decl_mutable_method(field)}}
10 {%- endif %} 12 {%- endif %}
11 {{base.decl_internal_getter_method(field)}}
12 {{base.decl_internal_setter_method(field)}}
13 {%- endmacro %} 13 {%- endmacro %}
14 14
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/build/scripts/templates/fields/external.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698