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

Unified Diff: core/scripts/make_style_builder.py

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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
« no previous file with comments | « core/scripts/action_derivedsourcesallinone.py ('k') | core/scripts/make_style_shorthands.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/scripts/make_style_builder.py
diff --git a/core/scripts/make_style_builder.py b/core/scripts/make_style_builder.py
index bdad99eb996b2f93ee9661fe6a10e5525674f399..b408c94b2e4872adf0ee56691fe183c16237869e 100755
--- a/core/scripts/make_style_builder.py
+++ b/core/scripts/make_style_builder.py
@@ -38,10 +38,7 @@ class StyleBuilderWriter(in_generator.Writer):
class_name = 'StyleBuilder'
valid_values = {
- 'apply_type': ['default', 'length'],
- 'use_none': [True, False],
- 'use_intrinsic': [True, False],
- 'use_auto': [True, False],
+ 'svg': [True, False],
'custom_all': [True, False],
'custom_initial': [True, False],
'custom_inherit': [True, False],
@@ -49,9 +46,10 @@ class StyleBuilderWriter(in_generator.Writer):
}
defaults = {
'condition': None,
- 'apply_type': 'default',
'name_for_methods': None,
'use_handlers_for': None,
+ 'svg': False,
+ 'converter': None,
# These depend on property name by default
'type_name': None,
'getter': None,
@@ -63,10 +61,6 @@ class StyleBuilderWriter(in_generator.Writer):
'custom_initial': False,
'custom_inherit': False,
'custom_value': False,
-# For the length apply type. Will get moved out to StyleBuilderFunctions.cpp.tmpl
- 'use_none': False,
- 'use_intrinsic': False,
- 'use_auto': False,
}
def __init__(self, in_files, enabled_conditions):
« no previous file with comments | « core/scripts/action_derivedsourcesallinone.py ('k') | core/scripts/make_style_shorthands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698