mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
16 lines
295 B
Cheetah
16 lines
295 B
Cheetah
{% from "macros.tmpl" import license %}
|
|
{{ license() }}
|
|
|
|
#ifndef {{namespace}}ElementLookupTrie_h
|
|
#define {{namespace}}ElementLookupTrie_h
|
|
|
|
#include "wtf/text/StringImpl.h"
|
|
|
|
namespace blink {
|
|
|
|
StringImpl* lookup{{namespace}}Tag(const UChar* data, unsigned length);
|
|
|
|
} // namespace blink
|
|
|
|
#endif
|