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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathData.h

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) 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/svg/SVGPathData.h
diff --git a/third_party/WebKit/Source/core/svg/SVGPathData.h b/third_party/WebKit/Source/core/svg/SVGPathData.h
index a45f78b74f9e201a8afbb53876c2a5db312d3251..abc1dbed293ff0ecd7a1f1974b828d38bbf75904 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathData.h
+++ b/third_party/WebKit/Source/core/svg/SVGPathData.h
@@ -56,7 +56,8 @@ static inline SVGPathSegType toAbsolutePathSegType(const SVGPathSegType type) {
}
static inline bool isAbsolutePathSegType(const SVGPathSegType type) {
- // For commands with an ordinal >= PathSegMoveToAbs, and odd number => relative command.
+ // For commands with an ordinal >= PathSegMoveToAbs, and odd number =>
+ // relative command.
return type < PathSegMoveToAbs || type % 2 == 0;
}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGPathBuilder.cpp ('k') | third_party/WebKit/Source/core/svg/SVGPathElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698