chromium/third_party/blink/renderer/core/layout/list/list_marker.h

// Copyright 2020 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_LIST_LIST_MARKER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LIST_LIST_MARKER_H_

#include "base/check_op.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/layout_object.h"

namespace blink {

class CounterStyle;
class LayoutListItem;
class LayoutTextFragment;

// This class holds code shared among all classes for list markers, for both
// legacy layout and LayoutNG.
class CORE_EXPORT ListMarker {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LIST_LIST_MARKER_H_