Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Unified Diff: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp

Issue 2066563002: Rename StyleLayoutData to StyleGeometryData (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698