| Index: ash/display/cursor_window_controller.cc | 
| diff --git a/ash/display/cursor_window_controller.cc b/ash/display/cursor_window_controller.cc | 
| index fbd9e96eecefa282db568e705d51a85c4048b0c7..c9968fe4e04ecdce66c3374884da220852f79b0e 100644 | 
| --- a/ash/display/cursor_window_controller.cc | 
| +++ b/ash/display/cursor_window_controller.cc | 
| @@ -150,7 +150,7 @@ void CursorWindowController::UpdateLocation() { | 
| return; | 
| gfx::Point point = aura::Env::GetInstance()->last_mouse_location(); | 
| if (!is_cursor_compositing_enabled_) { | 
| -    Shell::GetPrimaryRootWindow()->GetHost()->ConvertPointToHost(&point); | 
| +    Shell::GetPrimaryRootWindow()->GetHost()->ConvertDIPToPixels(&point); | 
| } else { | 
| point.Offset(-bounds_in_screen_.x(), -bounds_in_screen_.y()); | 
| } | 
|  |