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

Commit aa1b6f3b authored by Austin Delgado's avatar Austin Delgado Committed by Android (Google) Code Review
Browse files

Merge "Add onPointerCancelWithContext and setIgnoreDisplayTouches to TestHal" into udc-dev

parents c14cb224 bf084136
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -217,6 +217,16 @@ public class TestHal extends IFingerprint.Stub {
            public void onContextChanged(OperationContext context) {
                Slog.w(TAG, "onContextChanged");
            }

            @Override
            public void onPointerCancelWithContext(PointerContext context) {
                Slog.w(TAG, "onPointerCancelWithContext");
            }

            @Override
            public void setIgnoreDisplayTouches(boolean shouldIgnore) {
                Slog.w(TAG, "setIgnoreDisplayTouches");
            }
        };
    }
}