// Copyright 2019 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_WTF_TEXT_CASE_MAP_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_TEXT_CASE_MAP_H_ #include "third_party/blink/renderer/platform/wtf/forward.h" #include "third_party/blink/renderer/platform/wtf/wtf_export.h" namespace WTF { class String; class TextOffsetMap; // This class performs the full Unicode case-mapping. // // See LowerASCII/UpperASCII() variants for faster, ASCII-only, // locale-independent case-mapping. class WTF_EXPORT CaseMap { … }; } // namespace WTF CaseMap; #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_WTF_TEXT_CASE_MAP_H_