| OLD | NEW |
| 1 {% from "macros.tmpl" import license %} | 1 {% from "macros.tmpl" import license %} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #ifndef {{namespace}}{{suffix}}Names_h | 4 #ifndef {{namespace}}{{suffix}}Names_h |
| 5 #define {{namespace}}{{suffix}}Names_h | 5 #define {{namespace}}{{suffix}}Names_h |
| 6 | 6 |
| 7 {% if suffix %} | 7 {% if suffix %} |
| 8 #include "{{namespace}}Names.h" | 8 #include "core/{{namespace}}Names.h" |
| 9 {% else %} | 9 {% else %} |
| 10 {% if export %} | 10 {% if export %} |
| 11 #include "platform/PlatformExport.h" | 11 #include "platform/PlatformExport.h" |
| 12 {% endif %} | 12 {% endif %} |
| 13 #include "wtf/text/AtomicString.h" | 13 #include "wtf/text/AtomicString.h" |
| 14 {% endif %} | 14 {% endif %} |
| 15 | 15 |
| 16 namespace WebCore { | 16 namespace WebCore { |
| 17 namespace {{namespace}}Names { | 17 namespace {{namespace}}Names { |
| 18 | 18 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 29 {% endfor %} | 29 {% endfor %} |
| 30 | 30 |
| 31 #endif // {{namespace|to_macro_style}}_NAMES_HIDE_GLOBALS | 31 #endif // {{namespace|to_macro_style}}_NAMES_HIDE_GLOBALS |
| 32 | 32 |
| 33 {{export}} void init{{suffix}}(); | 33 {{export}} void init{{suffix}}(); |
| 34 | 34 |
| 35 } // {{namespace}}Names | 35 } // {{namespace}}Names |
| 36 } // WebCore | 36 } // WebCore |
| 37 | 37 |
| 38 #endif | 38 #endif |
| OLD | NEW |