From a1d4fe00718abb40cdef39df7d15244e582409f9 Mon Sep 17 00:00:00 2001 From: "Liana Kazanova (xWF)" Date: Mon, 18 Nov 2024 19:14:42 +0000 Subject: Revert "Check if cursor has moved out of viewport bounds in Curs..." Revert submission 30111126-cd-cursor Reason for revert: DroidMonitor: Potential culprit for http://b/379706345 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted. Reverted changes: /q/submissionid:30111126-cd-cursor Change-Id: Ibff6c02be1359729802d4c85fa8dc0fdb4c75492 --- libs/input/PointerController.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/input/PointerController.h') diff --git a/libs/input/PointerController.h b/libs/input/PointerController.h index 69bef546b788..ee8d1211341f 100644 --- a/libs/input/PointerController.h +++ b/libs/input/PointerController.h @@ -51,7 +51,7 @@ public: ~PointerController() override; - vec2 move(float deltaX, float deltaY) override; + void move(float deltaX, float deltaY) override; void setPosition(float x, float y) override; FloatPoint getPosition() const override; ui::LogicalDisplayId getDisplayId() const override; @@ -165,7 +165,7 @@ public: ~TouchPointerController() override; - vec2 move(float, float) override { + void move(float, float) override { LOG_ALWAYS_FATAL("Should not be called"); } void setPosition(float, float) override { -- cgit v1.2.3-59-g8ed1b