| OLD | NEW |
| 1 {% from "macros.tmpl" import license %} | 1 {% from "macros.tmpl" import license %} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #ifndef {{namespace}}ElementLookupTrie_h | 4 #ifndef {{namespace}}ElementLookupTrie_h |
| 5 #define {{namespace}}ElementLookupTrie_h | 5 #define {{namespace}}ElementLookupTrie_h |
| 6 | 6 |
| 7 #include "wtf/text/StringImpl.h" | 7 #include "wtf/text/StringImpl.h" |
| 8 | 8 |
| 9 namespace WebCore { | 9 namespace blink { |
| 10 | 10 |
| 11 StringImpl* lookup{{namespace}}Tag(const UChar* data, unsigned length); | 11 StringImpl* lookup{{namespace}}Tag(const UChar* data, unsigned length); |
| 12 | 12 |
| 13 } // WebCore | 13 } // namespace blink |
| 14 | 14 |
| 15 #endif | 15 #endif |
| OLD | NEW |