diff options
| author | 2017-09-19 20:42:28 +0000 | |
|---|---|---|
| committer | 2017-09-19 20:42:28 +0000 | |
| commit | 7c5be535544429d85ac0624b6acfde015f00983a (patch) | |
| tree | 5bd08bd1bf76ed5dc63645266539f589f9722fd3 | |
| parent | b39679d4c498e14a373bac559b3840be98f1881e (diff) | |
| parent | 0853fe8a53032438e272aeefa3a8eb6674cf2dd6 (diff) | |
Merge "Adds handle to NanoAppInstanceInfo Parcel" into oc-mr1-dev
am: 0853fe8a53
Change-Id: Icefb1d6d21bcebfc5b16e5ec234c9f1c6043717f
| -rw-r--r-- | core/java/android/hardware/location/NanoAppInstanceInfo.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/hardware/location/NanoAppInstanceInfo.java b/core/java/android/hardware/location/NanoAppInstanceInfo.java index ac6d83f622b2..26238304d8e9 100644 --- a/core/java/android/hardware/location/NanoAppInstanceInfo.java +++ b/core/java/android/hardware/location/NanoAppInstanceInfo.java @@ -287,8 +287,10 @@ public class NanoAppInstanceInfo { mPublisher = in.readString(); mName = in.readString(); + mHandle = in.readInt(); mAppId = in.readLong(); mAppVersion = in.readInt(); + mContexthubId = in.readInt(); mNeededReadMemBytes = in.readInt(); mNeededWriteMemBytes = in.readInt(); mNeededExecMemBytes = in.readInt(); @@ -309,6 +311,8 @@ public class NanoAppInstanceInfo { public void writeToParcel(Parcel out, int flags) { out.writeString(mPublisher); out.writeString(mName); + + out.writeInt(mHandle); out.writeLong(mAppId); out.writeInt(mAppVersion); out.writeInt(mContexthubId); |