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

Unified Diff: core/scripts/make_style_builder.py

Issue 19605006: Roll IDL to multivm@1316 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 5 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/make_runtime_features.py ('k') | core/scripts/name_macros.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 fab2d71771fd7e0e1cb33037a65631d5af789c2b..bdad99eb996b2f93ee9661fe6a10e5525674f399 100755
--- a/core/scripts/make_style_builder.py
+++ b/core/scripts/make_style_builder.py
@@ -51,6 +51,7 @@ class StyleBuilderWriter(in_generator.Writer):
'condition': None,
'apply_type': 'default',
'name_for_methods': None,
+ 'use_handlers_for': None,
# These depend on property name by default
'type_name': None,
'getter': None,
@@ -85,6 +86,7 @@ class StyleBuilderWriter(in_generator.Writer):
cc = self._camelcase_property_name(property["name"])
property["property_id"] = "CSSProperty" + cc
cc = property["name_for_methods"] or cc.replace("Webkit", "")
+ property["camel_case_name"] = cc
set_if_none(property, "type_name", "E" + cc)
set_if_none(property, "getter", self._lower_first(cc))
set_if_none(property, "setter", "set" + cc)
« no previous file with comments | « core/scripts/make_runtime_features.py ('k') | core/scripts/name_macros.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698