blob: 3a88c76d486458d2631948b9f7b3ee09bacc6131 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// 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_LAYOUT_LIST_MARKER_IMAGE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_LIST_MARKER_IMAGE_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/layout/layout_image.h"
namespace blink {
class Document;
class CORE_EXPORT LayoutListMarkerImage final : public LayoutImage {
public:
explicit LayoutListMarkerImage(Element*);
static LayoutListMarkerImage* CreateAnonymous(Document*);
bool IsLayoutNGObject() const override {
NOT_DESTROYED();
return IsLayoutNGObjectForListMarkerImage();
}
LayoutSize DefaultSize() const;
private:
bool IsOfType(LayoutObjectType) const override;
void ComputeIntrinsicSizingInfoByDefaultSize(IntrinsicSizingInfo&) const;
void ComputeIntrinsicSizingInfo(IntrinsicSizingInfo&) const final;
};
template <>
struct DowncastTraits<LayoutListMarkerImage> {
static bool AllowFrom(const LayoutObject& object) {
return object.IsListMarkerImage();
}
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_LAYOUT_LAYOUT_LIST_MARKER_IMAGE_H_