#include "third_party/blink/renderer/platform/fonts/shaping/font_features.h"
#include "third_party/blink/renderer/platform/fonts/font.h"
#include "third_party/blink/renderer/platform/fonts/font_description.h"
namespace blink {
namespace {
constexpr hb_feature_t CreateFeature(hb_tag_t tag, uint32_t value = 0) { … }
constexpr hb_feature_t CreateFeature(char c1,
char c2,
char c3,
char c4,
uint32_t value = 0) { … }
}
std::optional<unsigned> FontFeatures::FindValueForTesting(hb_tag_t tag) const { … }
void FontFeatures::Initialize(const FontDescription& description) { … }
}