| Index: ash/magnifier/magnification_controller.cc
|
| diff --git a/ash/magnifier/magnification_controller.cc b/ash/magnifier/magnification_controller.cc
|
| index d2169b320e0a88530ee0baf6b7399ea91fe48224..6295e0841d591978d6ad7f992355c9d6c53af620 100644
|
| --- a/ash/magnifier/magnification_controller.cc
|
| +++ b/ash/magnifier/magnification_controller.cc
|
| @@ -354,11 +354,11 @@ void MagnificationControllerImpl::AfterAnimationMoveCursorTo(
|
| aura::client::CursorClient* cursor_client =
|
| aura::client::GetCursorClient(root_window_);
|
| if (cursor_client) {
|
| - // When cursor is invisible, do not move or show the cursor after the
|
| + // When cursor is invisible, do not move or enable the cursor after the
|
| // animation.
|
| if (!cursor_client->IsCursorVisible())
|
| return;
|
| - cursor_client->ShowCursor(false);
|
| + cursor_client->EnableCursor(false);
|
| }
|
| move_cursor_after_animation_ = true;
|
| position_after_animation_ = location;
|
| @@ -408,7 +408,7 @@ void MagnificationControllerImpl::OnImplicitAnimationsCompleted() {
|
| aura::client::CursorClient* cursor_client =
|
| aura::client::GetCursorClient(root_window_);
|
| if (cursor_client)
|
| - cursor_client->ShowCursor(true);
|
| + cursor_client->EnableCursor(true);
|
| }
|
|
|
| is_on_animation_ = false;
|
|
|