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

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

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
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

Powered by Google App Engine
This is Rietveld 408576698