Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8469a998 authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Merge "ImsMultiEndPoint - Sip Notify Change" am: bc103bdf am: 4a319c85

am: 98138a28

Change-Id: I2662ae0934dfa2ed9990ba69093c4455d1966332
parents e8fbdc95 98138a28
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -87,6 +87,7 @@ public final class ImsExternalCallState implements Parcelable {
        mCallId = in.readInt();
        ClassLoader classLoader = ImsExternalCallState.class.getClassLoader();
        mAddress = in.readParcelable(classLoader);
        mLocalAddress = in.readParcelable(classLoader);
        mIsPullable = (in.readInt() != 0);
        mCallState = in.readInt();
        mCallType = in.readInt();
@@ -103,6 +104,7 @@ public final class ImsExternalCallState implements Parcelable {
    public void writeToParcel(Parcel out, int flags) {
        out.writeInt(mCallId);
        out.writeParcelable(mAddress, 0);
        out.writeParcelable(mLocalAddress, 0);
        out.writeInt(mIsPullable ? 1 : 0);
        out.writeInt(mCallState);
        out.writeInt(mCallType);
@@ -131,6 +133,11 @@ public final class ImsExternalCallState implements Parcelable {
        return mAddress;
    }

    /** @hide */
    public Uri getLocalAddress() {
        return mLocalAddress;
    }

    public boolean isCallPullable() {
        return mIsPullable;
    }
@@ -151,6 +158,7 @@ public final class ImsExternalCallState implements Parcelable {
    public String toString() {
        return "ImsExternalCallState { mCallId = " + mCallId +
                ", mAddress = " + Log.pii(mAddress) +
                ", mLocalAddress = " + Log.pii(mLocalAddress) +
                ", mIsPullable = " + mIsPullable +
                ", mCallState = " + mCallState +
                ", mCallType = " + mCallType +