| OLD | NEW |
| 1 {% from "macros.tmpl" import license -%} | 1 {% from "macros.tmpl" import license -%} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #ifndef {{namespace}}_h | 4 #ifndef {{namespace}}_h |
| 5 #define {{namespace}}_h | 5 #define {{namespace}}_h |
| 6 | 6 |
| 7 #include "wtf/text/AtomicString.h" | 7 #include "wtf/text/AtomicString.h" |
| 8 | 8 |
| 9 namespace WebCore { | 9 namespace WebCore { |
| 10 namespace {{namespace}} { | 10 namespace {{namespace}} { |
| 11 | 11 |
| 12 #ifndef {{namespace}}_HIDE_GLOBALS | 12 #ifndef {{namespace}}_HIDE_GLOBALS |
| 13 | 13 |
| 14 {%- for name in names %} | 14 {%- for name in names %} |
| 15 extern const WTF::AtomicString {{name}}; | 15 extern const WTF::AtomicString {{name}}; |
| 16 {%- endfor %} | 16 {%- endfor %} |
| 17 | 17 |
| 18 #endif // {{namespace}}_HIDE_GLOBALS | 18 #endif // {{namespace}}_HIDE_GLOBALS |
| 19 | 19 |
| 20 void init(); | 20 void init(); |
| 21 | 21 |
| 22 } // {{namespace}} | 22 } // {{namespace}} |
| 23 } // WebCore | 23 } // WebCore |
| 24 | 24 |
| 25 #endif | 25 #endif |
| OLD | NEW |