| Index: cc/layer_tree_host_impl.cc
|
| diff --git a/cc/layer_tree_host_impl.cc b/cc/layer_tree_host_impl.cc
|
| index 876e91384e6740532e88262cb748965d4a35d4a1..2ea8a278f7eb52f9b19d627224d38ec9eb7e3e16 100644
|
| --- a/cc/layer_tree_host_impl.cc
|
| +++ b/cc/layer_tree_host_impl.cc
|
| @@ -1500,7 +1500,7 @@ void LayerTreeHostImpl::animateLayers(base::TimeTicks monotonicTime, base::Time
|
|
|
| AnimationRegistrar::AnimationControllerMap copy = m_animationRegistrar->active_animation_controllers();
|
| for (AnimationRegistrar::AnimationControllerMap::iterator iter = copy.begin(); iter != copy.end(); ++iter)
|
| - (*iter).second->animate(monotonicSeconds);
|
| + (*iter).second->Animate(monotonicSeconds);
|
|
|
| m_client->setNeedsRedrawOnImplThread();
|
| setBackgroundTickingEnabled(!m_visible && !m_animationRegistrar->active_animation_controllers().empty());
|
| @@ -1515,7 +1515,7 @@ void LayerTreeHostImpl::updateAnimationState()
|
| scoped_ptr<AnimationEventsVector> events(make_scoped_ptr(new AnimationEventsVector));
|
| AnimationRegistrar::AnimationControllerMap copy = m_animationRegistrar->active_animation_controllers();
|
| for (AnimationRegistrar::AnimationControllerMap::iterator iter = copy.begin(); iter != copy.end(); ++iter)
|
| - (*iter).second->updateState(events.get());
|
| + (*iter).second->UpdateState(events.get());
|
|
|
| if (!events->empty())
|
| m_client->postAnimationEventsToMainThreadOnImplThread(events.Pass(), m_lastAnimationTime);
|
|
|