chromium/third_party/blink/renderer/core/layout/inline/logical_line_builder.h

// Copyright 2024 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_CORE_LAYOUT_INLINE_LOGICAL_LINE_BUILDER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_LOGICAL_LINE_BUILDER_H_

#include "third_party/blink/renderer/core/layout/inline/inline_item_result.h"
#include "third_party/blink/renderer/core/layout/inline/inline_node.h"

namespace blink {

class InlineBreakToken;
class InlineChildLayoutContext;
class InlineLayoutAlgorithm;
class InlineLayoutStateStack;
class LineInfo;
class LogicalLineItems;
struct InlineBoxState;
struct LogicalRubyColumn;

// This class is responsible to build a LogicalLineItems from a LineInfo.
// It's a helper for InlineLayoutAlgorithm.
class LogicalLineBuilder {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_LOGICAL_LINE_BUILDER_H_