| Index: ui/ozone/platform/dri/gpu_platform_support_host_gbm.cc
|
| diff --git a/ui/ozone/platform/dri/gpu_platform_support_host_gbm.cc b/ui/ozone/platform/dri/gpu_platform_support_host_gbm.cc
|
| index 160b5153dbd4df2eaddf55892c9c6fab5196251b..39b5e1febd3470393d09a9992f956e9032cd8fa9 100644
|
| --- a/ui/ozone/platform/dri/gpu_platform_support_host_gbm.cc
|
| +++ b/ui/ozone/platform/dri/gpu_platform_support_host_gbm.cc
|
| @@ -71,10 +71,12 @@ bool GpuPlatformSupportHostGbm::Send(IPC::Message* message) {
|
| return true;
|
| }
|
|
|
| -void GpuPlatformSupportHostGbm::SetHardwareCursor(gfx::AcceleratedWidget widget,
|
| - const SkBitmap& bitmap,
|
| - const gfx::Point& location) {
|
| - Send(new OzoneGpuMsg_CursorSet(widget, bitmap, location));
|
| +void GpuPlatformSupportHostGbm::SetHardwareCursor(
|
| + gfx::AcceleratedWidget widget,
|
| + const std::vector<SkBitmap>& bitmaps,
|
| + const gfx::Point& location,
|
| + int frame_delay_ms) {
|
| + Send(new OzoneGpuMsg_CursorSet(widget, bitmaps, location, frame_delay_ms));
|
| }
|
|
|
| void GpuPlatformSupportHostGbm::MoveHardwareCursor(
|
|
|