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

Commit 86f434a6 authored by Joe Bolinger's avatar Joe Bolinger Committed by Android (Google) Code Review
Browse files

Merge "Add new methods to test HAL."

parents 7dbdd48c a709db73
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");
            }
        };
    }
}