summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl')
-rw-r--r--chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl b/chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl
index 8c5096044e0..2eab64f679e 100644
--- a/chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl
+++ b/chromium/third_party/blink/renderer/build/scripts/templates/element_lookup_trie.cc.tmpl
@@ -11,12 +11,12 @@
namespace blink {
-using namespace {{namespace}}Names;
+using namespace {{namespace|lower}}_names;
const AtomicString& lookup{{namespace}}Tag(const UChar* data, unsigned length) {
DCHECK(data);
DCHECK(length);
- {% macro trie_return_statement(tag) %}{{tag}}Tag.LocalName(){% endmacro %}
+ {% macro trie_return_statement(tag) %}{{tag|symbol}}Tag.LocalName(){% endmacro %}
{{ trie_length_switch(length_tries, trie_return_statement, false) | indent(4) }}
return g_null_atom;
}