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

Unified Diff: cc/animation/animation_host.cc

Issue 2322693003: CC Animation: Rename has_any_animation and make implementattion out-of-line (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | cc/animation/animation_player.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_host.cc
diff --git a/cc/animation/animation_host.cc b/cc/animation/animation_host.cc
index e0ea034045a161ba96ebf786cf33d7141c648f90..53f21c72c6709d9116ac681abec612ab9de8340c 100644
--- a/cc/animation/animation_host.cc
+++ b/cc/animation/animation_host.cc
@@ -509,7 +509,7 @@ bool AnimationHost::AnimationStartScale(ElementId element_id,
bool AnimationHost::HasAnyAnimation(ElementId element_id) const {
auto element_animations = GetElementAnimationsForElementId(element_id);
- return element_animations ? element_animations->has_any_animation() : false;
+ return element_animations ? element_animations->HasAnyAnimation() : false;
}
bool AnimationHost::HasActiveAnimationForTesting(ElementId element_id) const {
« no previous file with comments | « no previous file | cc/animation/animation_player.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698