Merge "Skip parceling destroyed buffer" into rvc-dev
This commit is contained in:
@@ -2231,7 +2231,8 @@ public class ActivityManager {
|
|||||||
public void writeToParcel(Parcel dest, int flags) {
|
public void writeToParcel(Parcel dest, int flags) {
|
||||||
dest.writeLong(mId);
|
dest.writeLong(mId);
|
||||||
ComponentName.writeToParcel(mTopActivityComponent, dest);
|
ComponentName.writeToParcel(mTopActivityComponent, dest);
|
||||||
dest.writeParcelable(mSnapshot, 0);
|
dest.writeParcelable(mSnapshot != null && !mSnapshot.isDestroyed() ? mSnapshot : null,
|
||||||
|
0);
|
||||||
dest.writeInt(mColorSpace.getId());
|
dest.writeInt(mColorSpace.getId());
|
||||||
dest.writeInt(mOrientation);
|
dest.writeInt(mOrientation);
|
||||||
dest.writeInt(mRotation);
|
dest.writeInt(mRotation);
|
||||||
|
|||||||
Reference in New Issue
Block a user