| Index: Source/core/css/CSSBasicShapes.h
|
| diff --git a/Source/core/css/CSSBasicShapes.h b/Source/core/css/CSSBasicShapes.h
|
| index 827b5790d1a249f3b373c3a558cb8618824069bd..30266e35cd23ed66ad32ddddddbfa9561571a15d 100644
|
| --- a/Source/core/css/CSSBasicShapes.h
|
| +++ b/Source/core/css/CSSBasicShapes.h
|
| @@ -52,19 +52,15 @@ public:
|
| virtual String cssText() const = 0;
|
| virtual bool equals(const CSSBasicShape&) const = 0;
|
|
|
| - CSSPrimitiveValue* referenceBox() const { return m_referenceBox.get(); }
|
| - void setReferenceBox(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> referenceBox) { m_referenceBox = referenceBox; }
|
| -
|
| bool isEllipse() const { return type() == CSSBasicShapeEllipseType; }
|
| bool isPolygon() const { return type() == CSSBasicShapePolygonType; }
|
| bool isCircle() const { return type() == CSSBasicShapeCircleType; }
|
| bool isInset() const { return type() == CSSBasicShapeInsetType; }
|
|
|
| - DEFINE_INLINE_VIRTUAL_TRACE() { visitor->trace(m_referenceBox); }
|
| + DEFINE_INLINE_VIRTUAL_TRACE() { }
|
|
|
| protected:
|
| CSSBasicShape() { }
|
| - RefPtrWillBeMember<CSSPrimitiveValue> m_referenceBox;
|
| };
|
|
|
| class CSSBasicShapeCircle final : public CSSBasicShape {
|
|
|