Merge "Adds handle to NanoAppInstanceInfo Parcel" into oc-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
0853fe8a53
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user