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

Commit bf1ec6e8 authored by Jooyung Han's avatar Jooyung Han Committed by Automerger Merge Worker
Browse files

Merge changes from topic "fix-aidl-warnings" am: a886a5c4 am: 5235704a

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1688165

Change-Id: Iac71017b6bee1b1b41c15054ac7801470c28f08a
parents 9591642c 5235704a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ parcelable HardwareBufferDescription {
  int width;
  int height;
  int layers;
  android.hardware.graphics.common.PixelFormat format;
  android.hardware.graphics.common.BufferUsage usage;
  android.hardware.graphics.common.PixelFormat format = android.hardware.graphics.common.PixelFormat.UNSPECIFIED;
  android.hardware.graphics.common.BufferUsage usage = android.hardware.graphics.common.BufferUsage.CPU_READ_NEVER;
  int stride;
}
+2 −2
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ parcelable HardwareBufferDescription {
    int width;
    int height;
    int layers;
    PixelFormat format;
    BufferUsage usage;
    PixelFormat format = PixelFormat.UNSPECIFIED;
    BufferUsage usage = BufferUsage.CPU_READ_NEVER;
    int stride;
}
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ parcelable HardwareAuthToken {
  long challenge;
  long userId;
  long authenticatorId;
  android.hardware.keymaster.HardwareAuthenticatorType authenticatorType;
  android.hardware.keymaster.HardwareAuthenticatorType authenticatorType = android.hardware.keymaster.HardwareAuthenticatorType.NONE;
  android.hardware.keymaster.Timestamp timestamp;
  byte[] mac;
}
+1 −1
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@ package android.hardware.keymaster;
parcelable VerificationToken {
  long challenge;
  android.hardware.keymaster.Timestamp timestamp;
  android.hardware.keymaster.SecurityLevel securityLevel;
  android.hardware.keymaster.SecurityLevel securityLevel = android.hardware.keymaster.SecurityLevel.SOFTWARE;
  byte[] mac;
}
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ parcelable HardwareAuthToken {
     * authenticatorType describes the type of authentication that took place, e.g. password or
     * fingerprint.
     */
    HardwareAuthenticatorType authenticatorType;
    HardwareAuthenticatorType authenticatorType = HardwareAuthenticatorType.NONE;

    /**
     * timestamp indicates when the user authentication took place, in milliseconds since some
Loading