| Index: ui/events/ozone/evdev/event_converter_evdev_impl_unittest.cc
|
| diff --git a/ui/events/ozone/evdev/event_converter_evdev_impl_unittest.cc b/ui/events/ozone/evdev/event_converter_evdev_impl_unittest.cc
|
| index f862724a15efb144b34a54198036223b79a2c113..b7162bc4a87e75fea23a17ab41d68bb275bb835a 100644
|
| --- a/ui/events/ozone/evdev/event_converter_evdev_impl_unittest.cc
|
| +++ b/ui/events/ozone/evdev/event_converter_evdev_impl_unittest.cc
|
| @@ -51,10 +51,17 @@ class MockCursorEvdev : public CursorDelegateEvdev {
|
| const gfx::PointF& location) override {
|
| cursor_location_ = location;
|
| }
|
| + void MoveCursorTo(const gfx::PointF& location) override {
|
| + cursor_location_ = location;
|
| + }
|
| void MoveCursor(const gfx::Vector2dF& delta) override {
|
| cursor_location_ = gfx::PointF(delta.x(), delta.y());
|
| }
|
| bool IsCursorVisible() override { return 1; }
|
| + gfx::Rect GetCursorDisplayBounds() override {
|
| + NOTIMPLEMENTED();
|
| + return gfx::Rect();
|
| + }
|
| gfx::PointF location() override { return cursor_location_; }
|
|
|
| private:
|
|
|