Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 691afb4d authored by Prabir Pradhan's avatar Prabir Pradhan
Browse files

Cleanup PointerControllerInterface: Remove unused getBounds method

Bug: 332973324
Test: Presubmit
Flag: EXEMPT refactor
Change-Id: Ia0221ac47cda7bee04923f5c3f2dd280cee8c131
parent ce73b49f
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -72,10 +72,6 @@ public:
    /* Dumps the state of the pointer controller. */
    virtual std::string dump() = 0;

    /* Gets the bounds of the region that the pointer can traverse.
     * Returns true if the bounds are available. */
    virtual std::optional<FloatRect> getBounds() const = 0;

    /* Move the pointer. */
    virtual void move(float deltaX, float deltaY) = 0;

+0 −6
Original line number Diff line number Diff line
@@ -148,12 +148,6 @@ bool FakePointerController::isPointerShown() {
    return mIsPointerShown;
}

std::optional<FloatRect> FakePointerController::getBounds() const {
    if (!mEnabled) return std::nullopt;

    return mHaveBounds ? std::make_optional<FloatRect>(mMinX, mMinY, mMaxX, mMaxY) : std::nullopt;
}

void FakePointerController::move(float deltaX, float deltaY) {
    if (!mEnabled) return;

+0 −1
Original line number Diff line number Diff line
@@ -65,7 +65,6 @@ public:

private:
    std::string dump() override { return ""; }
    std::optional<FloatRect> getBounds() const override;
    void move(float deltaX, float deltaY) override;
    void unfade(Transition) override;
    void setPresentation(Presentation) override {}