Merge "Adds handle to NanoAppInstanceInfo Parcel" into oc-mr1-dev

This commit is contained in:
TreeHugger Robot
2017-09-19 20:32:56 +00:00
committed by Android (Google) Code Review

View File

@@ -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);