| Index: third_party/WebKit/Source/build/scripts/make_css_property_apis.py
|
| diff --git a/third_party/WebKit/Source/build/scripts/make_css_property_apis.py b/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
|
| index 35ee4a2bb4944b2127cf5ce56f14a3296dd057d4..bc21273f746b5db0fab280b4f03149891e0128ae 100755
|
| --- a/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
|
| +++ b/third_party/WebKit/Source/build/scripts/make_css_property_apis.py
|
| @@ -11,7 +11,6 @@ import make_style_builder
|
|
|
| from collections import namedtuple, defaultdict
|
|
|
| -
|
| # Gets the classname for a given property.
|
| def get_classname(property):
|
| if property['api_class'] is True:
|
| @@ -37,7 +36,7 @@ class CSSPropertyAPIWriter(make_style_builder.StyleBuilderWriter):
|
| continue
|
| classname = get_classname(property)
|
| properties_for_class[classname].append(property['property_id'])
|
| - self._outputs[classname + '.h'] = self.generate_property_api_h_builder(classname)
|
| + self._outputs[classname + '.h'] = self.generate_property_api_h_builder(classname, property['api_methods'])
|
|
|
| # Stores a list of classes with elements (index, classname, [propertyIDs, ..]).
|
| self._api_classes = []
|
| @@ -58,11 +57,12 @@ class CSSPropertyAPIWriter(make_style_builder.StyleBuilderWriter):
|
|
|
| # Provides a function object given the classname of the property.
|
| # This returned function generates a .h file for the specified property.
|
| - def generate_property_api_h_builder(self, api_classname):
|
| + def generate_property_api_h_builder(self, api_classname, api_methods):
|
| @template_expander.use_jinja('CSSPropertyAPIFiles.h.tmpl')
|
| def generate_property_api_h():
|
| return {
|
| 'api_classname': api_classname,
|
| + 'api_methods': api_methods,
|
| }
|
| return generate_property_api_h
|
|
|
|
|