| Index: ash/magnifier/magnification_controller.cc
|
| diff --git a/ash/magnifier/magnification_controller.cc b/ash/magnifier/magnification_controller.cc
|
| index b7e90c13b555dd6ae6b19396fe693654a150b141..eaeee0519f5169ce1d019ad62344b483d6bbdb97 100644
|
| --- a/ash/magnifier/magnification_controller.cc
|
| +++ b/ash/magnifier/magnification_controller.cc
|
| @@ -339,11 +339,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;
|
| @@ -393,7 +393,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;
|
|
|