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

Unified Diff: Source/core/animation/DocumentAnimations.cpp

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No, really. Created 5 years, 7 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
« no previous file with comments | « Source/core/animation/DocumentAnimations.h ('k') | Source/core/animation/EffectInput.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Source/core/animation/DocumentAnimations.h ('k') | Source/core/animation/EffectInput.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698