#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_VALUE_KEYWORDS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_VALUE_KEYWORDS_H_
#include <string.h>
#include <stdint.h>
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_mode.h"
namespace blink {
enum class CSSValueID { … };
const int numCSSValueKeywords = …;
const size_t maxCSSValueKeywordLength = …;
inline bool IsValidCSSValueID(CSSValueID id)
{ … }
CORE_EXPORT const char* getValueName(CSSValueID);
bool isValueAllowedInMode(CSSValueID id, CSSParserMode mode);
}
#endif