am 3f6bf4b2: am e76e7014: Don\'t forget to parcel mIsAppProvidedIntent

* commit '3f6bf4b287052f3fface43dd0377bcfada087de6':
  Don't forget to parcel mIsAppProvidedIntent
This commit is contained in:
Adam Skory
2015-06-06 01:33:09 +00:00
committed by Android Git Automerger

View File

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