| 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 eb3cf6315cac3af0032577edd9293cb9d9efc159..0822a08801e943e5870899f2096e8ac3796c2396 100644
|
| --- a/third_party/WebKit/Source/core/animation/AnimationStack.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/AnimationStack.cpp
|
| @@ -85,7 +85,7 @@ AnimationStack::AnimationStack()
|
| bool AnimationStack::hasActiveAnimationsOnCompositor(CSSPropertyID property) const
|
| {
|
| for (const auto& sampledEffect : m_sampledEffects) {
|
| - // TODO(dstockwell): move the playing check into AnimationEffect 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))
|
| return true;
|
| }
|
|
|