chromium/third_party/blink/renderer/platform/fonts/shaping/text_auto_space.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_FONTS_SHAPING_TEXT_AUTO_SPACE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_FONTS_SHAPING_TEXT_AUTO_SPACE_H_

#include <unicode/umachine.h>
#include <ostream>

#include "base/memory/stack_allocated.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/wtf_size_t.h"

namespace WTF {
class String;
}  // namespace WTF

namespace blink {

class Font;

class PLATFORM_EXPORT TextAutoSpace {};

PLATFORM_EXPORT std::ostream& operator<<(std::ostream& ostream,
                                         TextAutoSpace::CharType);

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_FONTS_SHAPING_TEXT_AUTO_SPACE_H_