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

Commit 88c36336 authored by Bruno Martins's avatar Bruno Martins
Browse files

Biometrics: Pass halHandlesDisplayTouches to FingerprintSensorPropertiesInternal

Depends-on: I56166950c6ef7cbb0c4ac2c0b7998e4a909d4af9
Change-Id: I1b7eef5449f813deee23ebe9ff07d4d3b73ccf4b
parent 71b30e47
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -79,6 +79,7 @@ class FingerprintEnrollIntroFragmentTest {
      listOf<ComponentInfoInternal>(),
      FingerprintSensorProperties.TYPE_POWER_BUTTON,
      false /* halControlsIllumination */,
      false /* halHandlesDisplayTouches */,
      true /* resetLockoutRequiresHardwareAuthToken */,
      listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
    )
+1 −0
Original line number Diff line number Diff line
@@ -68,6 +68,7 @@ class Injector(step: FingerprintNavigationStep.UiStep) {
        listOf<ComponentInfoInternal>(),
        FingerprintSensorProperties.TYPE_REAR,
        false /* halControlsIllumination */,
        false /* halHandlesDisplayTouches */,
        true /* resetLockoutRequiresHardwareAuthToken */,
        listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
      )
+1 −0
Original line number Diff line number Diff line
@@ -70,6 +70,7 @@ class FakeFingerprintManagerInteractor :
        listOf<ComponentInfoInternal>(),
        FingerprintSensorProperties.TYPE_POWER_BUTTON,
        false /* halControlsIllumination */,
        false /* halHandlesDisplayTouches */,
        true /* resetLockoutRequiresHardwareAuthToken */,
        listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
      )
+1 −0
Original line number Diff line number Diff line
@@ -127,6 +127,7 @@ class FingerprintManagerInteractorTest {
          listOf<ComponentInfoInternal>(),
          FingerprintSensorProperties.TYPE_POWER_BUTTON,
          false /* halControlsIllumination */,
          false /* halHandlesDisplayTouches */,
          true /* resetLockoutRequiresHardwareAuthToken */,
          listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
        )
+3 −0
Original line number Diff line number Diff line
@@ -165,6 +165,7 @@ class FingerprintEnrollFindSensorViewModelV2Test {
            listOf<ComponentInfoInternal>(),
            FingerprintSensorProperties.TYPE_UDFPS_OPTICAL,
            false /* halControlsIllumination */,
            false /* halHandlesDisplayTouches */,
            true /* resetLockoutRequiresHardwareAuthToken */,
            listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
          )
@@ -229,6 +230,7 @@ class FingerprintEnrollFindSensorViewModelV2Test {
            listOf<ComponentInfoInternal>(),
            FingerprintSensorProperties.TYPE_REAR,
            false /* halControlsIllumination */,
            false /* halHandlesDisplayTouches */,
            true /* resetLockoutRequiresHardwareAuthToken */,
            listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
          )
@@ -253,6 +255,7 @@ class FingerprintEnrollFindSensorViewModelV2Test {
            listOf<ComponentInfoInternal>(),
            FingerprintSensorProperties.TYPE_UDFPS_OPTICAL,
            false /* halControlsIllumination */,
            false /* halHandlesDisplayTouches */,
            true /* resetLockoutRequiresHardwareAuthToken */,
            listOf<SensorLocationInternal>(SensorLocationInternal.DEFAULT),
          )
Loading