// Copyright 2020 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/wtf/text/math_transform.h" #include "base/check.h" #include "third_party/blink/renderer/platform/wtf/text/ascii_ctype.h" #include "third_party/blink/renderer/platform/wtf/text/character_names.h" namespace WTF { namespace unicode { static UChar32 mathVariantGreek(UChar32 code_point, UChar32 base_char) { … } static UChar32 mathVariantLatin(UChar32 code_point, UChar32 base_char) { … } UChar32 ItalicMathVariant(UChar32 code_point) { … } } // namespace unicode } // namespace WTF