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

Unified Diff: ui/gfx/compositor/layer_animator.cc

Issue 9817026: Changes how we detect whether the launcher should be shown when (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comment Created 8 years, 9 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 | « ash/wm/workspace/workspace_manager.cc ('k') | ui/gfx/compositor/layer_animator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
}
« no previous file with comments | « ash/wm/workspace/workspace_manager.cc ('k') | ui/gfx/compositor/layer_animator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698