Index: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h |
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h |
index 5adcb8ca9fff2697a84ae7fda8e4a87c967407a4..e2447cd3a5061b715a14023f79383c7c4a09da34 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h |
@@ -280,28 +280,29 @@ private: |
StyleInheritedResourceData(const StyleInheritedResourceData&); |
}; |
-// Positioning and sizing properties. |
-class StyleLayoutData : public RefCounted<StyleLayoutData> { |
- public: |
- static PassRefPtr<StyleLayoutData> create() { return adoptRef(new StyleLayoutData); } |
- PassRefPtr<StyleLayoutData> copy() const; |
- bool operator==(const StyleLayoutData&) const; |
- bool operator!=(const StyleLayoutData& other) const |
- { |
- return !(*this == other); |
- } |
- RefPtr<StylePath> d; |
- Length cx; |
- Length cy; |
- Length x; |
- Length y; |
- Length r; |
- Length rx; |
- Length ry; |
- private: |
- StyleLayoutData(); |
- StyleLayoutData(const StyleLayoutData&); |
- }; |
+// Geometry properties |
+class StyleGeometryData : public RefCounted<StyleGeometryData> { |
+public: |
+ static PassRefPtr<StyleGeometryData> create() { return adoptRef(new StyleGeometryData); } |
+ PassRefPtr<StyleGeometryData> copy() const; |
+ bool operator==(const StyleGeometryData&) const; |
+ bool operator!=(const StyleGeometryData& other) const |
+ { |
+ return !(*this == other); |
+ } |
+ RefPtr<StylePath> d; |
+ Length cx; |
+ Length cy; |
+ Length x; |
+ Length y; |
+ Length r; |
+ Length rx; |
+ Length ry; |
+ |
+private: |
+ StyleGeometryData(); |
+ StyleGeometryData(const StyleGeometryData&); |
+}; |
} // namespace blink |