| 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}}Names.h" | 4 #include "{{namespace}}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 blink; | 11 using namespace blink; |
| 14 | 12 |
| 15 {% if tags %} | 13 {% if tags %} |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 {% endfor %} | 56 {% endfor %} |
| 59 | 57 |
| 60 // Attrs | 58 // Attrs |
| 61 {% for attr in attrs|sort %} | 59 {% for attr in attrs|sort %} |
| 62 QualifiedName::createStatic((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl
); | 60 QualifiedName::createStatic((void*)&{{attr|symbol}}Attr, {{attr|symbol}}Impl
); |
| 63 {% endfor %} | 61 {% endfor %} |
| 64 } | 62 } |
| 65 | 63 |
| 66 } // {{namespace}} | 64 } // {{namespace}} |
| 67 } // namespace blink | 65 } // namespace blink |
| OLD | NEW |