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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit Created 4 years, 2 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/layout/svg/LayoutSVGShape.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
index 1805856d34588fe651420ad41c44405e6664c9a3..a07b52811d317988a2233c27b668a701c60e7f54 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGShape.cpp
@@ -47,15 +47,13 @@ namespace blink {
LayoutSVGShape::LayoutSVGShape(SVGGeometryElement* node)
: LayoutSVGModelObject(node),
- m_needsBoundariesUpdate(
- false) // Default is false, the cached rects are empty from the beginning.
- ,
- m_needsShapeUpdate(
- true) // Default is true, so we grab a Path object once from SVGGeometryElement.
- ,
- m_needsTransformUpdate(
- true) // Default is true, so we grab a AffineTransform object once from SVGGeometryElement.
-{}
+ // Default is false, the cached rects are empty from the beginning.
+ m_needsBoundariesUpdate(false),
+ // Default is true, so we grab a Path object once from SVGGeometryElement.
+ m_needsShapeUpdate(true),
+ // Default is true, so we grab a AffineTransform object once from
+ // SVGGeometryElement.
+ m_needsTransformUpdate(true) {}
LayoutSVGShape::~LayoutSVGShape() {}

Powered by Google App Engine
This is Rietveld 408576698