Merge \\"Telephony multi-endpoint disconnect causes.\\" into nyc-mr1-dev am: 0babe967be
am: d3b6092a05
Change-Id: I8b756b5dd9c8bc1f98ebde57187cee16a50e6565
This commit is contained in:
@@ -275,6 +275,12 @@ public final class DisconnectCause implements Parcelable {
|
||||
case CONNECTION_MANAGER_NOT_SUPPORTED:
|
||||
code = "CONNECTION_MANAGER_NOT_SUPPORTED";
|
||||
break;
|
||||
case CALL_PULLED:
|
||||
code = "CALL_PULLED";
|
||||
break;
|
||||
case ANSWERED_ELSEWHERE:
|
||||
code = "ANSWERED_ELSEWHERE";
|
||||
break;
|
||||
default:
|
||||
code = "invalid code: " + mDisconnectCode;
|
||||
break;
|
||||
|
||||
@@ -200,6 +200,12 @@ public class DisconnectCause {
|
||||
*/
|
||||
public static final int CALL_PULLED = 51;
|
||||
|
||||
/**
|
||||
* The call was terminated because it was answered on another device.
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int ANSWERED_ELSEWHERE = 52;
|
||||
|
||||
//*********************************************************************************************
|
||||
// When adding a disconnect type:
|
||||
// 1) Please assign the new type the next id value below.
|
||||
@@ -208,14 +214,14 @@ public class DisconnectCause {
|
||||
// 4) Update toString() with the newly added disconnect type.
|
||||
// 5) Update android.telecom.DisconnectCauseUtil with any mappings to a telecom.DisconnectCause.
|
||||
//
|
||||
// NextId: 50
|
||||
// NextId: 53
|
||||
//*********************************************************************************************
|
||||
|
||||
/** Smallest valid value for call disconnect codes. */
|
||||
public static final int MINIMUM_VALID_VALUE = NOT_DISCONNECTED;
|
||||
|
||||
/** Largest valid value for call disconnect codes. */
|
||||
public static final int MAXIMUM_VALID_VALUE = VIDEO_CALL_NOT_ALLOWED_WHILE_TTY_ENABLED;
|
||||
public static final int MAXIMUM_VALID_VALUE = ANSWERED_ELSEWHERE;
|
||||
|
||||
/** Private constructor to avoid class instantiation. */
|
||||
private DisconnectCause() {
|
||||
@@ -327,6 +333,8 @@ public class DisconnectCause {
|
||||
return "VIDEO_CALL_NOT_ALLOWED_WHILE_TTY_ENABLED";
|
||||
case CALL_PULLED:
|
||||
return "CALL_PULLED";
|
||||
case ANSWERED_ELSEWHERE:
|
||||
return "ANSWERED_ELSEWHERE";
|
||||
default:
|
||||
return "INVALID: " + cause;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user