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

Unified Diff: third_party/WebKit/Source/platform/animation/AnimationUtilities.h

Issue 2390833002: reflow comments in platform/{animation,blob,clipboard,exported} (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/platform/animation/AnimationUtilities.h
diff --git a/third_party/WebKit/Source/platform/animation/AnimationUtilities.h b/third_party/WebKit/Source/platform/animation/AnimationUtilities.h
index f81b957f2403280d7d9e814d4d31c601e7b1569f..ef4cec74ae1a9214addef9bd5dc1f951b124d465 100644
--- a/third_party/WebKit/Source/platform/animation/AnimationUtilities.h
+++ b/third_party/WebKit/Source/platform/animation/AnimationUtilities.h
@@ -77,7 +77,8 @@ inline FloatPoint blend(const FloatPoint& from,
blend(from.y(), to.y(), progress));
}
-// Calculates the accuracy for evaluating a timing function for an animation with the specified duration.
+// Calculates the accuracy for evaluating a timing function for an animation
+// with the specified duration.
inline double accuracyForDuration(double duration) {
return std::max(1.0 / (200.0 * duration),
gfx::CubicBezier::GetDefaultEpsilon());

Powered by Google App Engine
This is Rietveld 408576698