am e76e7014: Don\'t forget to parcel mIsAppProvidedIntent

* commit 'e76e7014c7aa22f56f1b82c87d9d80106b5ddcc1':
  Don't forget to parcel mIsAppProvidedIntent
This commit is contained in:
Adam Skory
2015-06-06 01:20:19 +00:00
committed by Android Git Automerger

View File

@@ -152,6 +152,7 @@ public class AssistContent {
if (in.readInt() != 0) {
mUri = Uri.CREATOR.createFromParcel(in);
}
mIsAppProvidedIntent = in.readInt() == 1;
}
/** @hide */
@@ -174,5 +175,6 @@ public class AssistContent {
} else {
dest.writeInt(0);
}
dest.writeInt(mIsAppProvidedIntent ? 1 : 0);
}
}