// 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_CORE_LAYOUT_INLINE_INLINE_ITEM_TEXT_INDEX_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_INLINE_ITEM_TEXT_INDEX_H_ #include <ostream> #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/platform/wtf/wtf_size_t.h" namespace blink { // Represents an index of `InlineItem`, along with the text offset. struct CORE_EXPORT InlineItemTextIndex { … }; inline std::ostream& operator<<(std::ostream& ostream, const InlineItemTextIndex& index) { … } } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_INLINE_ITEM_TEXT_INDEX_H_