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

Commit 05902faa authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Merge "ImsMultiEndPoint - Sip Notify Change" am: af228ca9

am: 206bacb1

Change-Id: I66364e0e5213410595ec110c422125b2c93f0411
parents d9a7a590 206bacb1
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ public final class ImsExternalCallState implements Parcelable {
    private int mCallId;
    // Number
    private Uri mAddress;
    private Uri mLocalAddress;
    private boolean mIsPullable;
    // CALL_STATE_CONFIRMED / CALL_STATE_TERMINATED
    private int mCallState;
@@ -68,6 +69,19 @@ public final class ImsExternalCallState implements Parcelable {
        Rlog.d(TAG, "ImsExternalCallState = " + this);
    }

    /** @hide */
    public ImsExternalCallState(int callId, Uri address, Uri localAddress,
            boolean isPullable, int callState, int callType, boolean isCallheld) {
        mCallId = callId;
        mAddress = address;
        mLocalAddress = localAddress;
        mIsPullable = isPullable;
        mCallState = callState;
        mCallType = callType;
        mIsHeld = isCallheld;
        Rlog.d(TAG, "ImsExternalCallState = " + this);
    }

    /** @hide */
    public ImsExternalCallState(Parcel in) {
        mCallId = in.readInt();