| OLD | NEW |
| (Empty) |
| 1 {% from 'macros.tmpl' import license %} | |
| 2 {{license()}} | |
| 3 | |
| 4 #include "config.h" | |
| 5 #include "core/events/{{namespace}}Factory.h" | |
| 6 | |
| 7 #include "{{namespace}}{{suffix}}Headers.h" | |
| 8 #include "gen/sky/platform/RuntimeEnabledFeatures.h" | |
| 9 | |
| 10 namespace blink { | |
| 11 | |
| 12 PassRefPtr<{{namespace}}> {{namespace}}{{suffix}}Factory::create(const String& t
ype) | |
| 13 { | |
| 14 {% for event in events %} | |
| 15 {% filter enable_conditional(event.Conditional) %} | |
| 16 {% if event|script_name|case_insensitive_matching %} | |
| 17 if (equalIgnoringCase(type, "{{event|script_name}}"){% if event.RuntimeEnabl
ed %} && RuntimeEnabledFeatures::{{event.RuntimeEnabled|lower_first}}(){% endif
%}) | |
| 18 {% else %} | |
| 19 if (type == "{{event|script_name}}"{% if event.RuntimeEnabled %} && RuntimeE
nabledFeatures::{{event.RuntimeEnabled|lower_first}}(){% endif %}) | |
| 20 {% endif %} | |
| 21 return {{event|cpp_name}}::create(); | |
| 22 {% endfilter %} | |
| 23 {% endfor %} | |
| 24 return nullptr; | |
| 25 } | |
| 26 | |
| 27 } // namespace blink | |
| OLD | NEW |