| Index: ui/ozone/platform/dri/dri_cursor.h
|
| diff --git a/ui/ozone/platform/dri/dri_cursor.h b/ui/ozone/platform/dri/dri_cursor.h
|
| index 4cea2d8822a23b70c74055ade662737d2a49a6d7..1df4ed54667f5907e2ee7d436bea5678632c309e 100644
|
| --- a/ui/ozone/platform/dri/dri_cursor.h
|
| +++ b/ui/ozone/platform/dri/dri_cursor.h
|
| @@ -41,7 +41,8 @@ class DriCursor : public CursorDelegateEvdev {
|
| const gfx::PointF& location) override;
|
| void MoveCursor(const gfx::Vector2dF& delta) override;
|
| bool IsCursorVisible() override;
|
| - gfx::PointF location() override;
|
| + gfx::PointF GetLocation() override;
|
| + gfx::PointF GetRootLocation() override;
|
|
|
| private:
|
| // The location of the bitmap (the cursor location is the hotspot location).
|
| @@ -60,6 +61,9 @@ class DriCursor : public CursorDelegateEvdev {
|
|
|
| // The location of the cursor within the window.
|
| gfx::PointF cursor_location_;
|
| +
|
| + // The location of the cursor within the screen.
|
| + gfx::PointF cursor_root_location_;
|
| };
|
|
|
| } // namespace ui
|
|
|