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

Commit ef2dcff1 authored by Diya Bera's avatar Diya Bera Committed by Android (Google) Code Review
Browse files

Merge "Add @hide to AIDL interfaces" into main

parents ffb0704a 0afb3e82
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.biometrics.face;
/* @hide */
@Backing(type="byte") @VintfStability
enum AcquiredInfo {
  UNKNOWN,
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.biometrics.face;
/* @hide */
@VintfStability
parcelable AuthenticationFrame {
  android.hardware.biometrics.face.BaseFrame data;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.biometrics.face;
/* @hide */
@VintfStability
parcelable BaseFrame {
  android.hardware.biometrics.face.AcquiredInfo acquiredInfo = android.hardware.biometrics.face.AcquiredInfo.UNKNOWN;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.biometrics.face;
/* @hide */
@VintfStability
parcelable Cell {
  int x;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.biometrics.face;
/* @hide */
@VintfStability
parcelable EnrollmentFrame {
  @nullable android.hardware.biometrics.face.Cell cell;
Loading