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

Unified Diff: third_party/WebKit/Source/core/animation/InvalidatableInterpolation.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/InvalidatableInterpolation.cpp
diff --git a/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp b/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
index c1b03c9eeb570257a5a8b202f3295e5df18f604e..87b6fbc5e4e9f5e5c7c46154251289dad8f21ccc 100644
--- a/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
+++ b/third_party/WebKit/Source/core/animation/InvalidatableInterpolation.cpp
@@ -22,7 +22,8 @@ void InvalidatableInterpolation::interpolate(int, double fraction) {
m_currentFraction = fraction;
if (m_isCached && m_cachedPairConversion)
m_cachedPairConversion->interpolateValue(fraction, m_cachedValue);
- // We defer the interpolation to ensureValidInterpolation() if m_cachedPairConversion is null.
+ // We defer the interpolation to ensureValidInterpolation() if
+ // m_cachedPairConversion is null.
}
std::unique_ptr<PairwisePrimitiveInterpolation>
@@ -124,7 +125,8 @@ bool InvalidatableInterpolation::isCacheValid(
if (isNeutralKeyframeActive()) {
if (m_cachedPairConversion && m_cachedPairConversion->isFlip())
return false;
- // Pairwise interpolation can never happen between different InterpolationTypes, neutral values always represent the underlying value.
+ // Pairwise interpolation can never happen between different
+ // InterpolationTypes, neutral values always represent the underlying value.
if (!underlyingValueOwner || !m_cachedValue ||
m_cachedValue->type() != underlyingValueOwner.type())
return false;

Powered by Google App Engine
This is Rietveld 408576698