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

Commit a709db73 authored by Joe Bolinger's avatar Joe Bolinger
Browse files

Add new methods to test HAL.

Bug: 204584403
Test: builds
Change-Id: I3c3f87616c4450a838b4223f18a47470f7004e36
parent 278967f2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -207,6 +207,11 @@ public class TestHal extends IFace.Stub {
            public ICancellationSignal detectInteractionWithContext(OperationContext context) {
                return detectInteraction();
            }

            @Override
            public void onContextChanged(OperationContext context) {
                Slog.w(TAG, "onContextChanged");
            }
        };
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -212,6 +212,11 @@ public class TestHal extends IFingerprint.Stub {
            public void onPointerUpWithContext(PointerContext context) {
                onPointerUp(context.pointerId);
            }

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