Merge "Fix dial emergency call redial issue by China Unicom."
am: 3ab81b9694
Change-Id: I3895caab83c75a8f0d0251da6154d5a93fe09694
This commit is contained in:
@@ -273,6 +273,13 @@ public class DisconnectCause {
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int EMERGENCY_PERM_FAILURE = 64;
|
||||
|
||||
/**
|
||||
* This cause is used to report a normal event only when no other cause in the normal class
|
||||
* applies.
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int NORMAL_UNSPECIFIED = 65;
|
||||
//*********************************************************************************************
|
||||
// When adding a disconnect type:
|
||||
// 1) Update toString() with the newly added disconnect type.
|
||||
@@ -413,6 +420,8 @@ public class DisconnectCause {
|
||||
return "EMERGENCY_TEMP_FAILURE";
|
||||
case EMERGENCY_PERM_FAILURE:
|
||||
return "EMERGENCY_PERM_FAILURE";
|
||||
case NORMAL_UNSPECIFIED:
|
||||
return "NORMAL_UNSPECIFIED";
|
||||
default:
|
||||
return "INVALID: " + cause;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user