| Index: ui/gfx/compositor/layer_animator.cc
|
| diff --git a/ui/gfx/compositor/layer_animator.cc b/ui/gfx/compositor/layer_animator.cc
|
| index e56cf08e63b18409cbb011076a1e29f62a58fd60..46c8d8237e9c3e5a989f83b2c9f5d6d0984348ea 100644
|
| --- a/ui/gfx/compositor/layer_animator.cc
|
| +++ b/ui/gfx/compositor/layer_animator.cc
|
| @@ -534,9 +534,9 @@ bool LayerAnimator::StartSequenceImmediately(LayerAnimationSequence* sequence) {
|
|
|
| void LayerAnimator::GetTargetValue(
|
| LayerAnimationElement::TargetValue* target) const {
|
| - for (RunningAnimations::const_iterator iter = running_animations_.begin();
|
| - iter != running_animations_.end(); ++iter) {
|
| - (*iter).sequence->GetTargetValue(target);
|
| + for (AnimationQueue::const_iterator iter = animation_queue_.begin();
|
| + iter != animation_queue_.end(); ++iter) {
|
| + (*iter)->GetTargetValue(target);
|
| }
|
| }
|
|
|
|
|