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

Unified Diff: third_party/WebKit/Source/core/svg/animation/SMILTime.cpp

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.cpp
diff --git a/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp b/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
index e986054744995c6d2fd3d2e3c0a38eb805cd473f..33a6c58b478d1cc31a16883e3f686a771af8133f 100644
--- a/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
+++ b/third_party/WebKit/Source/core/svg/animation/SMILTime.cpp
@@ -30,7 +30,8 @@
using namespace blink;
SMILTime blink::operator*(const SMILTime& a, const SMILTime& b) {
- // Equal operators have to be used instead of negation here to make NaN work as well.
+ // Equal operators have to be used instead of negation here to make NaN work
+ // as well.
if (a.value() == 0 || b.value() == 0)
return SMILTime(0);
return a.value() * b.value();

Powered by Google App Engine
This is Rietveld 408576698