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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/fields/base.tmpl

Issue 2826653002: Generate getters/setters for some fields on groups in ComputedStyle (Closed)
Patch Set: Clean up nits prelanding Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/build/scripts/templates/fields/base.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/fields/base.tmpl b/third_party/WebKit/Source/build/scripts/templates/fields/base.tmpl
index b3c23ae658e05511ec7a416b0f2bf12e297ef63e..d0a9ee14a3e08f26bdd3e9aa06ff1ca95aa50281 100644
--- a/third_party/WebKit/Source/build/scripts/templates/fields/base.tmpl
+++ b/third_party/WebKit/Source/build/scripts/templates/fields/base.tmpl
@@ -1,12 +1,12 @@
-{% from 'fields/field.tmpl' import encode, decode, return_type %}
-{% macro decl_methods(field) -%}
-inline static {{field.type_name}} {{field.initial_method_name}}() {
+{% from 'fields/field.tmpl' import encode, decode, return_type, argument_type %}
+{% macro decl_public_methods(field) -%}
+inline static {{return_type(field)}} {{field.initial_method_name}}() {
return {{field.default_value}};
}
{{return_type(field)}} {{field.getter_method_name}}() const {
return {{decode(field, field.name)}};
}
-void {{field.setter_method_name}}({{field.type_name}} v) {
+void {{field.setter_method_name}}({{argument_type(field)}} v) {
{{field.name}} = {{encode(field, "v")}};
}
inline void {{field.resetter_method_name}}() {
@@ -14,3 +14,11 @@ inline void {{field.resetter_method_name}}() {
}
{%- endmacro %}
+{% macro decl_protected_methods(field) -%}
+{{return_type(field)}} {{field.internal_getter_method_name}}() const {
+ return {{decode(field, field.name)}};
+}
+void {{field.internal_setter_method_name}}({{argument_type(field)}} v) {
+ {{field.name}} = {{encode(field, "v")}};
+}
+{%- endmacro %}

Powered by Google App Engine
This is Rietveld 408576698