Index: Source/core/rendering/style/BasicShapes.h |
diff --git a/Source/core/rendering/style/BasicShapes.h b/Source/core/rendering/style/BasicShapes.h |
index 1ac84ca9a62f5f8599a56cee5c11cbad13fe6f7a..4d9455e96cb3fd07616d159cfd1e12b7562d03ca 100644 |
--- a/Source/core/rendering/style/BasicShapes.h |
+++ b/Source/core/rendering/style/BasicShapes.h |
@@ -69,17 +69,11 @@ public: |
virtual Type type() const = 0; |
- LayoutBox layoutBox() const { return m_layoutBox; } |
- void setLayoutBox(LayoutBox layoutBox) { m_layoutBox = layoutBox; } |
- |
protected: |
BasicShape() |
- : m_layoutBox(BoxMissing) |
{ |
} |
-private: |
- LayoutBox m_layoutBox; |
}; |
#define DEFINE_BASICSHAPE_TYPE_CASTS(thisType) \ |