summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Alex Buynytskyy <alexbuy@google.com> 2021-02-26 00:00:25 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2021-02-26 00:00:25 +0000
commit30a92553208567718403abd9279db3950b5478c8 (patch)
tree3fa11e842d060185bb82ab03131dc8ba0b232018
parentf341c5ab4ee20a574861fd14cdd10b48696e3580 (diff)
parent2645c147b7f9b9966198d6ebb09600ca4300e356 (diff)
Merge "Fixing some AIDL warnings." into sc-dev
-rw-r--r--core/java/android/content/pm/DataLoaderParamsParcel.aidl2
-rw-r--r--core/java/android/content/pm/InstallationFileParcel.aidl2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/pm/DataLoaderParamsParcel.aidl b/core/java/android/content/pm/DataLoaderParamsParcel.aidl
index d40012fd5718..29d472e6e927 100644
--- a/core/java/android/content/pm/DataLoaderParamsParcel.aidl
+++ b/core/java/android/content/pm/DataLoaderParamsParcel.aidl
@@ -23,7 +23,7 @@ import android.content.pm.DataLoaderType;
* @hide
*/
parcelable DataLoaderParamsParcel {
- DataLoaderType type;
+ DataLoaderType type = DataLoaderType.NONE;
@utf8InCpp String packageName;
@utf8InCpp String className;
@utf8InCpp String arguments;
diff --git a/core/java/android/content/pm/InstallationFileParcel.aidl b/core/java/android/content/pm/InstallationFileParcel.aidl
index b7efc1947cc3..09d1a3291b69 100644
--- a/core/java/android/content/pm/InstallationFileParcel.aidl
+++ b/core/java/android/content/pm/InstallationFileParcel.aidl
@@ -24,7 +24,7 @@ import android.content.pm.InstallationFileLocation;
*/
parcelable InstallationFileParcel {
String name;
- InstallationFileLocation location;
+ InstallationFileLocation location = InstallationFileLocation.UNKNOWN;
long size;
byte[] metadata;
byte[] signature;