Merge "ImsMultiEndPoint - Sip Notify Change"
This commit is contained in:
@ -45,6 +45,7 @@ public final class ImsExternalCallState implements Parcelable {
|
|||||||
private int mCallId;
|
private int mCallId;
|
||||||
// Number
|
// Number
|
||||||
private Uri mAddress;
|
private Uri mAddress;
|
||||||
|
private Uri mLocalAddress;
|
||||||
private boolean mIsPullable;
|
private boolean mIsPullable;
|
||||||
// CALL_STATE_CONFIRMED / CALL_STATE_TERMINATED
|
// CALL_STATE_CONFIRMED / CALL_STATE_TERMINATED
|
||||||
private int mCallState;
|
private int mCallState;
|
||||||
@ -68,6 +69,19 @@ public final class ImsExternalCallState implements Parcelable {
|
|||||||
Rlog.d(TAG, "ImsExternalCallState = " + this);
|
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 */
|
/** @hide */
|
||||||
public ImsExternalCallState(Parcel in) {
|
public ImsExternalCallState(Parcel in) {
|
||||||
mCallId = in.readInt();
|
mCallId = in.readInt();
|
||||||
|
Reference in New Issue
Block a user