| OLD | NEW |
| 1 {% from "macros.tmpl" import license %} | 1 {% from "macros.tmpl" import license %} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #include "config.h" | |
| 5 | |
| 6 #include "{{namespace}}{{suffix}}Names.h" | 4 #include "{{namespace}}{{suffix}}Names.h" |
| 7 | 5 |
| 8 #include "wtf/StaticConstructors.h" | 6 #include "wtf/StaticConstructors.h" |
| 9 | 7 |
| 10 namespace blink { | 8 namespace blink { |
| 11 namespace {{namespace}}Names { | 9 namespace {{namespace}}Names { |
| 12 | 10 |
| 13 using namespace WTF; | 11 using namespace WTF; |
| 14 | 12 |
| 15 {% for entry in entries|sort %} | 13 {% for entry in entries|sort %} |
| (...skipping 12 matching lines...) Expand all Loading... |
| 28 | 26 |
| 29 {% for entry in entries|sort %} | 27 {% for entry in entries|sort %} |
| 30 {% filter enable_conditional(entry.Conditional) %} | 28 {% filter enable_conditional(entry.Conditional) %} |
| 31 new ((void*)&{{entry|symbol}}) AtomicString({{entry|symbol}}Impl); | 29 new ((void*)&{{entry|symbol}}) AtomicString({{entry|symbol}}Impl); |
| 32 {% endfilter %} | 30 {% endfilter %} |
| 33 {% endfor %} | 31 {% endfor %} |
| 34 } | 32 } |
| 35 | 33 |
| 36 } // {{namespace}}Names | 34 } // {{namespace}}Names |
| 37 } // namespace blink | 35 } // namespace blink |
| OLD | NEW |