| Index: ui/base/cursor/cursor_loader_ozone.cc
|
| diff --git a/ui/base/cursor/cursor_loader_ozone.cc b/ui/base/cursor/cursor_loader_ozone.cc
|
| index 08b831e6d959712e91f4fe22475189423156d8fc..1d74eec7345c738bf3ad0b7a3d36549fe3c2300f 100644
|
| --- a/ui/base/cursor/cursor_loader_ozone.cc
|
| +++ b/ui/base/cursor/cursor_loader_ozone.cc
|
| @@ -24,8 +24,8 @@ void CursorLoaderOzone::LoadImageCursor(int id,
|
|
|
| GetImageCursorBitmap(resource_id, scale(), rotation(), &hotspot, &bitmap);
|
|
|
| - cursors_[id] =
|
| - CursorFactoryOzone::GetInstance()->CreateImageCursor(bitmap, hotspot);
|
| + cursors_[id] = CursorFactoryOzone::GetInstance()->CreateImageCursor(
|
| + bitmap, hotspot, scale());
|
| }
|
|
|
| void CursorLoaderOzone::LoadAnimatedCursor(int id,
|
| @@ -39,7 +39,7 @@ void CursorLoaderOzone::LoadAnimatedCursor(int id,
|
| resource_id, scale(), rotation(), &hotspot, &bitmaps);
|
|
|
| cursors_[id] = CursorFactoryOzone::GetInstance()->CreateAnimatedCursor(
|
| - bitmaps, hotspot, frame_delay_ms);
|
| + bitmaps, hotspot, frame_delay_ms, scale());
|
| }
|
|
|
| void CursorLoaderOzone::UnloadAll() {
|
|
|