Index: Source/core/animation/DocumentAnimations.cpp |
diff --git a/Source/core/animation/DocumentAnimations.cpp b/Source/core/animation/DocumentAnimations.cpp |
index ec3a548282b18183c08dbd54a74ba4f5ce60f845..f262f56232118d9b1e0eff6f7412c12457c0726f 100644 |
--- a/Source/core/animation/DocumentAnimations.cpp |
+++ b/Source/core/animation/DocumentAnimations.cpp |
@@ -60,7 +60,7 @@ void DocumentAnimations::updateAnimationTimingForAnimationFrame(Document& docume |
void DocumentAnimations::updateAnimationTimingIfNeeded(Document& document) |
{ |
- if (needsOutdatedAnimationPlayerUpdate(document) || document.timeline().needsAnimationTimingUpdate()) |
+ if (needsOutdatedAnimationUpdate(document) || document.timeline().needsAnimationTimingUpdate()) |
updateAnimationTiming(document, TimingUpdateOnDemand); |
} |
@@ -78,9 +78,9 @@ void DocumentAnimations::updateAnimationTimingForGetComputedStyle(Node& node, CS |
} |
} |
-bool DocumentAnimations::needsOutdatedAnimationPlayerUpdate(const Document& document) |
+bool DocumentAnimations::needsOutdatedAnimationUpdate(const Document& document) |
{ |
- return document.timeline().hasOutdatedAnimationPlayer(); |
+ return document.timeline().hasOutdatedAnimation(); |
} |
void DocumentAnimations::updateCompositorAnimations(Document& document) |