| Index: ash/magnifier/magnification_controller.cc
|
| diff --git a/ash/magnifier/magnification_controller.cc b/ash/magnifier/magnification_controller.cc
|
| index d1329766fc2498c4efd66decf248b544362be1db..698f0500047ae53c4811388fe71d5c1ddfd1b840 100644
|
| --- a/ash/magnifier/magnification_controller.cc
|
| +++ b/ash/magnifier/magnification_controller.cc
|
| @@ -204,8 +204,8 @@ bool MagnificationControllerImpl::RedrawDIP(const gfx::Point& position_in_dip,
|
| gfx::Transform transform;
|
| // Flips the signs intentionally to convert them from the position of the
|
| // magnification window.
|
| - transform.ConcatTranslate(-origin_.x(), -origin_.y());
|
| - transform.ConcatScale(scale_, scale_);
|
| + transform.Scale(scale_, scale_);
|
| + transform.Translate(-origin_.x(), -origin_.y());
|
|
|
| ui::ScopedLayerAnimationSettings settings(
|
| root_window_->layer()->GetAnimator());
|
|
|