chromium/third_party/blink/renderer/platform/text/han_kerning_char_type.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_TEXT_HAN_KERNING_CHAR_TYPE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_TEXT_HAN_KERNING_CHAR_TYPE_H_

#include <stdint.h>

namespace blink {

//
// Character types for the `HanKerning` class.
//
// https://drafts.csswg.org/css-text-4/#text-spacing-classes
//
enum class HanKerningCharType : uint8_t {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_TEXT_HAN_KERNING_CHAR_TYPE_H_