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 9cba3b750c8fb467777d82e1651a732d611182ad..e52fa96500d2ae62903bb37ad9c97ef5b928a6c1 100644 |
| --- a/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl |
| +++ b/third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl |
| @@ -16,7 +16,10 @@ |
| {% import 'fields/keyword.tmpl' as keyword %} |
| {% import 'fields/flag.tmpl' as flag %} |
| {% import 'fields/monotonic_flag.tmpl' as monotonic_flag %} |
| -{% set field_templates = { 'keyword': keyword, 'flag': flag, 'monotonic_flag': monotonic_flag } %} |
| +{% import 'fields/storage_only.tmpl' as storage_only %} |
| +{% set field_templates = { |
| + 'keyword': keyword, 'flag': flag, 'monotonic_flag': monotonic_flag, 'storage_only': storage_only |
|
sashab
2017/03/13 07:57:11
To think about -- these are starting to repeat all
shend
2017/03/14 22:20:06
Yeah I agree. It's a bit tricky because they're re
|
| + } %} |
| namespace blink { |