#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_TOKENIZER_NAMES_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_TOKENIZER_NAMES_H_
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
#include "third_party/blink/renderer/platform/platform_export.h"
namespace blink {
namespace html_tokenizer_names {
extern const WTF::AtomicString& kCdata;
extern const WTF::AtomicString& kDashDash;
extern const WTF::AtomicString& kDoctype;
extern const WTF::AtomicString& kPublic;
extern const WTF::AtomicString& kSystem;
constexpr unsigned kNamesCount = …;
void Init();
}
}
#endif