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

Unified Diff: third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp

Issue 2384263003: Reflow comments in core/animation and subdirs (Closed)
Patch Set: 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/animation/SVGPathSegInterpolationFunctions.cpp
diff --git a/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
index 7cfe05ebcfba1f30c1fb43bba5d7f6a8d4e4a07d..96bb4c887b1f01a460bbe0e1a1ea36404dcb4cc4 100644
--- a/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
+++ b/third_party/WebKit/Source/core/animation/SVGPathSegInterpolationFunctions.cpp
@@ -68,7 +68,8 @@ std::unique_ptr<InterpolableValue> consumeSingleCoordinate(
1, consumeCoordinateAxis(segment.y(), isAbsolute, coordinates.currentY));
if (toAbsolutePathSegType(segment.command) == PathSegMoveToAbs) {
- // Any upcoming 'closepath' commands bring us back to the location we have just moved to.
+ // Any upcoming 'closepath' commands bring us back to the location we have
+ // just moved to.
coordinates.initialX = coordinates.currentX;
coordinates.initialY = coordinates.currentY;
}
@@ -90,7 +91,8 @@ PathSegmentData consumeInterpolableSingleCoordinate(
list.get(1), isAbsolute, coordinates.currentY));
if (toAbsolutePathSegType(segType) == PathSegMoveToAbs) {
- // Any upcoming 'closepath' commands bring us back to the location we have just moved to.
+ // Any upcoming 'closepath' commands bring us back to the location we have
+ // just moved to.
coordinates.initialX = coordinates.currentX;
coordinates.initialY = coordinates.currentY;
}

Powered by Google App Engine
This is Rietveld 408576698