| Index: ash/wm/window_animations.cc
|
| diff --git a/ash/wm/window_animations.cc b/ash/wm/window_animations.cc
|
| index dbd8bf3dcf52ecd33c3ece4c1a10968081256e92..277f537db578ea05a920f75775e175aafde88f3d 100644
|
| --- a/ash/wm/window_animations.cc
|
| +++ b/ash/wm/window_animations.cc
|
| @@ -112,9 +112,8 @@ void AddLayerAnimationsForMinimize(aura::Window* window, bool show) {
|
|
|
| scoped_ptr<ui::InterpolatedTransform> translation(
|
| new ui::InterpolatedTranslation(
|
| - gfx::Point(),
|
| - gfx::Point(target_bounds.x() - bounds.x(),
|
| - target_bounds.y() - bounds.y())));
|
| + gfx::PointF(), gfx::PointF(target_bounds.x() - bounds.x(),
|
| + target_bounds.y() - bounds.y())));
|
|
|
| scale->SetChild(translation.release());
|
| scale->SetReversed(show);
|
|
|