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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationStack.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/AnimationStack.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationStack.cpp b/third_party/WebKit/Source/core/animation/AnimationStack.cpp
index 0e9abee334ff0609d78394e1013f6ec04d7f46ba..5bfbff081c97a93057f03a93f1610dec9193bc4f 100644
--- a/third_party/WebKit/Source/core/animation/AnimationStack.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationStack.cpp
@@ -90,7 +90,8 @@ AnimationStack::AnimationStack() {}
bool AnimationStack::hasActiveAnimationsOnCompositor(
CSSPropertyID property) const {
for (const auto& sampledEffect : m_sampledEffects) {
- // TODO(dstockwell): move the playing check into AnimationEffectReadOnly and expose both hasAnimations and hasActiveAnimations
+ // TODO(dstockwell): move the playing check into AnimationEffectReadOnly and
+ // expose both hasAnimations and hasActiveAnimations
if (sampledEffect->effect() &&
sampledEffect->effect()->animation()->playing() &&
sampledEffect->effect()->hasActiveAnimationsOnCompositor(property))

Powered by Google App Engine
This is Rietveld 408576698