Index: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
diff --git a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
index 54c5493a41169033c16bb6c129e8a5d4e4bb8b2e..7a9d197d77bf09f22df89288591096fe1fcd911f 100644 |
--- a/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
+++ b/third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp |
@@ -200,7 +200,7 @@ bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot |
&& markerEnd == other.markerEnd; |
} |
-StyleLayoutData::StyleLayoutData() |
+StyleGeometryData::StyleGeometryData() |
: d(SVGComputedStyle::initialD()) |
, cx(SVGComputedStyle::initialCx()) |
, cy(SVGComputedStyle::initialCy()) |
@@ -212,8 +212,8 @@ StyleLayoutData::StyleLayoutData() |
{ |
} |
-inline StyleLayoutData::StyleLayoutData(const StyleLayoutData& other) |
- : RefCounted<StyleLayoutData>() |
+inline StyleGeometryData::StyleGeometryData(const StyleGeometryData& other) |
+ : RefCounted<StyleGeometryData>() |
, d(other.d) |
, cx(other.cx) |
, cy(other.cy) |
@@ -225,12 +225,12 @@ inline StyleLayoutData::StyleLayoutData(const StyleLayoutData& other) |
{ |
} |
-PassRefPtr<StyleLayoutData> StyleLayoutData::copy() const |
+PassRefPtr<StyleGeometryData> StyleGeometryData::copy() const |
{ |
- return adoptRef(new StyleLayoutData(*this)); |
+ return adoptRef(new StyleGeometryData(*this)); |
} |
-bool StyleLayoutData::operator==(const StyleLayoutData& other) const |
+bool StyleGeometryData::operator==(const StyleGeometryData& other) const |
{ |
return x == other.x |
&& y == other.y |