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

// Copyright 2018 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_CARET_RECT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_CARET_RECT_H_

#include "third_party/blink/renderer/core/editing/forward.h"

namespace blink {

// This file provides utility functions for computing caret rect in LayoutNG.

struct InlineCaretPosition;
struct LocalCaretRect;

// Given a position, returns the caret rect.
LocalCaretRect ComputeLocalCaretRect(const InlineCaretPosition&);

// Almost the same as ComputeNGLocalCaretRect, except that the returned rect
// is adjusted to span the containing line box in the block direction.
LocalCaretRect ComputeLocalSelectionRect(const InlineCaretPosition&);

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_CARET_RECT_H_