// 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_CORE_LAYOUT_INLINE_TEXT_OFFSET_RANGE_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_TEXT_OFFSET_RANGE_H_ #include "base/check_op.h" #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/platform/wtf/wtf_size_t.h" namespace blink { // Represents a range of text, as a |start| and |end| offset pair. struct CORE_EXPORT TextOffsetRange { … }; CORE_EXPORT std::ostream& operator<<(std::ostream&, const TextOffsetRange&); } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_TEXT_OFFSET_RANGE_H_