Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / build / scripts / templates / StyleBuilderFunctions.h.tmpl
index a24418d..9ad8949 100644 (file)
@@ -1,5 +1,5 @@
-{% from "macros.tmpl" import wrap_with_condition, license -%}
-{{ license() }}
+{% from 'macros.tmpl' import license %}
+{{license()}}
 
 #ifndef StyleBuilderFunctions_h
 #define StyleBuilderFunctions_h
@@ -14,14 +14,13 @@ class StyleResolverState;
 class StyleBuilderFunctions {
 public:
 
-{%- for property_id, property in properties.items() if not property.use_handlers_for %}
-{% call wrap_with_condition(property.condition) %}
+    {% for property_id, property in properties.items()
+           if not property.use_handlers_for %}
     static void applyInitial{{property_id}}(StyleResolverState&);
     static void applyInherit{{property_id}}(StyleResolverState&);
     static void applyValue{{property_id}}(StyleResolverState&, CSSValue*);
-{%- endcall %}
-{%- endfor %}
 
+    {% endfor %}
 };
 
 } // namespace WebCore