From b0e280722c6e876c1d23dd8d0140e33a4e846cd9 Mon Sep 17 00:00:00 2001 From: Prabir Pradhan Date: Wed, 8 Nov 2023 21:09:34 +0000 Subject: Address additional comments: Pointer icon refactor for touch/stylus Bug: 293587049 Test: atest inputflinger_tests Change-Id: I831feaf0921dfdc389e79a88690f75fa51c43720 --- libs/input/PointerController.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libs/input/PointerController.h') diff --git a/libs/input/PointerController.h b/libs/input/PointerController.h index 6461abf754e3..fa07c3989720 100644 --- a/libs/input/PointerController.h +++ b/libs/input/PointerController.h @@ -143,6 +143,8 @@ public: const sp& looper, SpriteController& spriteController, bool enabled); + ~MousePointerController() override; + void setPresentation(Presentation) override { LOG_ALWAYS_FATAL("Should not be called"); } @@ -161,6 +163,8 @@ public: const sp& looper, SpriteController& spriteController, bool enabled); + ~TouchPointerController() override; + std::optional getBounds() const override { LOG_ALWAYS_FATAL("Should not be called"); } @@ -205,6 +209,8 @@ public: const sp& looper, SpriteController& spriteController, bool enabled); + ~StylusPointerController() override; + void setPresentation(Presentation) override { LOG_ALWAYS_FATAL("Should not be called"); } -- cgit v1.2.3-59-g8ed1b