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

Unified Diff: ui/compositor/transform_animation_curve_adapter.cc

Issue 12226080: Thread ui transform animations (Closed) Base URL: http://git.chromium.org/chromium/src.git@DefineThreadedLayerAnimationElements
Patch Set: Address review comments Created 7 years, 10 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
Index: ui/compositor/transform_animation_curve_adapter.cc
diff --git a/ui/compositor/transform_animation_curve_adapter.cc b/ui/compositor/transform_animation_curve_adapter.cc
index f7ad0f136b720a4e55a8dccd4bb50f6802fc1815..6b5bff367007894ea4956f67f4f2d4553b286393 100644
--- a/ui/compositor/transform_animation_curve_adapter.cc
+++ b/ui/compositor/transform_animation_curve_adapter.cc
@@ -45,8 +45,8 @@ gfx::Transform TransformAnimationCurveAdapter::getValue(
gfx::DecomposedTransform to_return;
gfx::BlendDecomposedTransforms(&to_return,
- decomposed_initial_value_,
decomposed_target_value_,
+ decomposed_initial_value_,
Tween::CalculateValue(tween_type_, progress));
return gfx::ComposeTransform(to_return);
}

Powered by Google App Engine
This is Rietveld 408576698