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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/ComputedStyleBase.h.tmpl

Issue 2742263002: Add 'storage_only' template to make_computed_style_base.py. (Closed)
Patch Set: Created 3 years, 9 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/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 {

Powered by Google App Engine
This is Rietveld 408576698