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

// Copyright 2017 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_NODE_DATA_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_INLINE_NODE_DATA_H_

#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/inline/inline_items_data.h"
#include "third_party/blink/renderer/core/layout/svg/svg_inline_node_data.h"

namespace blink {

template <typename OffsetMappingBuilder>
class InlineItemsBuilderTemplate;

// Data which is required for inline nodes.
struct CORE_EXPORT InlineNodeData final : InlineItemsData {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_INLINE_INLINE_NODE_DATA_H_