| Index: third_party/WebKit/Source/build/scripts/templates/CSSPropertyAPIFiles.h.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSPropertyAPIFiles.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSPropertyAPIFiles.h.tmpl
|
| index f379771514ae83b1687de26ba7ae6acbb7bbf70d..9b54b16e8320b8bffbb8d663486a033e295ccbfb 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/CSSPropertyAPIFiles.h.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/CSSPropertyAPIFiles.h.tmpl
|
| @@ -15,15 +15,9 @@ class CSSParserContext;
|
|
|
| class {{api_classname}} : public CSSPropertyAPI {
|
| public:
|
| - {% if "parseSingleValue" in api_methods %}
|
| - static const CSSValue* parseSingleValue(CSSParserTokenRange&,
|
| - const CSSParserContext*);
|
| - {% endif %}
|
| - {% if "parseShorthand" in api_methods %}
|
| - static HeapVector<CSSProperty>* parseShorthand(bool,
|
| - CSSParserTokenRange&,
|
| - const CSSParserContext*);
|
| - {% endif %}
|
| + {% for api_method in all_api_methods if api_method in methods_for_class %}
|
| + {{all_api_methods[api_method].signature}}
|
| + {% endfor %}
|
| };
|
|
|
| } // namespace blink
|
|
|