| Index: ash/magnifier/magnification_controller.cc
|
| diff --git a/ash/magnifier/magnification_controller.cc b/ash/magnifier/magnification_controller.cc
|
| index 0912e37dba9b37595313c0c023e06b8514f04a61..73e83d30aee04e7ff6845049f1f792874c777668 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;
|
|
|