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

Unified Diff: third_party/WebKit/Source/core/svg/animation/SMILTime.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/animation/SMILTime.h
diff --git a/third_party/WebKit/Source/core/svg/animation/SMILTime.h b/third_party/WebKit/Source/core/svg/animation/SMILTime.h
index 768fe79a5f1080188fd6c5d481648b28b5e29981..7f577bf1c343f54f325648093b2369cd63bbc4eb 100644
--- a/third_party/WebKit/Source/core/svg/animation/SMILTime.h
+++ b/third_party/WebKit/Source/core/svg/animation/SMILTime.h
@@ -96,8 +96,9 @@ inline bool operator!=(const SMILTime& a, const SMILTime& b) {
return !operator==(a, b);
}
-// Ordering of SMILTimes has to follow: finite < indefinite (Inf) < unresolved (NaN). The first comparison is handled by IEEE754 but
-// NaN values must be checked explicitly to guarantee that unresolved is ordered correctly too.
+// Ordering of SMILTimes has to follow: finite < indefinite (Inf) < unresolved
+// (NaN). The first comparison is handled by IEEE754 but NaN values must be
+// checked explicitly to guarantee that unresolved is ordered correctly too.
inline bool operator>(const SMILTime& a, const SMILTime& b) {
return a.isUnresolved() || (a.value() > b.value());
}
@@ -121,7 +122,8 @@ inline SMILTime operator+(const SMILTime& a, const SMILTime& b) {
inline SMILTime operator-(const SMILTime& a, const SMILTime& b) {
return a.value() - b.value();
}
-// So multiplying times does not make too much sense but SMIL defines it for duration * repeatCount
+// So multiplying times does not make too much sense but SMIL defines it for
+// duration * repeatCount
SMILTime operator*(const SMILTime&, const SMILTime&);
inline bool operator!=(const SMILInterval& a, const SMILInterval& b) {
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGViewSpec.cpp ('k') | third_party/WebKit/Source/core/svg/animation/SMILTime.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698