chromium/third_party/blink/renderer/platform/fonts/shaping/font_features.cc

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

#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) {}

}  // namespace

std::optional<unsigned> FontFeatures::FindValueForTesting(hb_tag_t tag) const {}

void FontFeatures::Initialize(const FontDescription& description) {}

}  // namespace blink