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

Commit a886a5c4 authored by Jooyung Han's avatar Jooyung Han Committed by Gerrit Code Review
Browse files

Merge changes from topic "fix-aidl-warnings"

* changes:
  aidl: Set explicit default values
  aidl: Set explicit default values
  aidl: Set explicit default values for enum-type fields
  aidl: Set explicit defaults to enum-type fields
parents af3b58e3 386e55b6
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