#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_BASIC_SHAPE_VALUES_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_BASIC_SHAPE_VALUES_H_
#include "base/memory/scoped_refptr.h"
#include "third_party/blink/renderer/core/css/css_primitive_value.h"
#include "third_party/blink/renderer/core/css/css_value.h"
#include "third_party/blink/renderer/core/css/css_value_pair.h"
#include "third_party/blink/renderer/platform/graphics/graphics_types.h"
#include "third_party/blink/renderer/platform/wtf/casting.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
namespace cssvalue {
class CSSBasicShapeCircleValue final : public CSSValue { … };
class CSSBasicShapeEllipseValue final : public CSSValue { … };
class CSSBasicShapePolygonValue final : public CSSValue { … };
class CSSBasicShapeInsetValue final : public CSSValue { … };
class CSSBasicShapeRectValue final : public CSSValue { … };
class CSSBasicShapeXYWHValue final : public CSSValue { … };
}
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeCircleValue> { … };
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeEllipseValue> { … };
template <>
struct DowncastTraits<cssvalue::CSSBasicShapePolygonValue> { … };
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeInsetValue> { … };
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeRectValue> { … };
template <>
struct DowncastTraits<cssvalue::CSSBasicShapeXYWHValue> { … };
}
#endif