| Index: ui/ozone/platform/dri/test/mock_dri_wrapper.cc
|
| diff --git a/ui/ozone/platform/dri/test/mock_dri_wrapper.cc b/ui/ozone/platform/dri/test/mock_dri_wrapper.cc
|
| index bb6bc13bfde88f2abd1b5575cb1e63afdab58ffb..957d4b8d3228f1ff12cc8fde0956bd532ce0ea1b 100644
|
| --- a/ui/ozone/platform/dri/test/mock_dri_wrapper.cc
|
| +++ b/ui/ozone/platform/dri/test/mock_dri_wrapper.cc
|
| @@ -110,12 +110,11 @@ ScopedDrmPropertyBlobPtr MockDriWrapper::GetPropertyBlob(
|
|
|
| bool MockDriWrapper::SetCursor(uint32_t crtc_id,
|
| uint32_t handle,
|
| - uint32_t width,
|
| - uint32_t height) {
|
| + const gfx::Size& size) {
|
| return true;
|
| }
|
|
|
| -bool MockDriWrapper::MoveCursor(uint32_t crtc_id, int x, int y) {
|
| +bool MockDriWrapper::MoveCursor(uint32_t crtc_id, const gfx::Point& point) {
|
| return true;
|
| }
|
|
|
|
|