Rename EXTRA_E_CALL to EXTRA_EMERGENCY_CALL.

Test: Update API, verify code compiles.
Bug: 117145353
Change-Id: Ic5e2618144eaaa4c836d085fe4555eb5d9b2947f
This commit is contained in:
Tyler Gunn
2018-10-02 15:19:36 -07:00
parent 417b7b14bb
commit 70f9063dde
2 changed files with 4 additions and 2 deletions

View File

@@ -5657,7 +5657,7 @@ package android.telephony.ims {
field public static final java.lang.String EXTRA_CODEC = "Codec";
field public static final java.lang.String EXTRA_DIALSTRING = "dialstring";
field public static final java.lang.String EXTRA_DISPLAY_TEXT = "DisplayText";
field public static final java.lang.String EXTRA_E_CALL = "e_call";
field public static final java.lang.String EXTRA_EMERGENCY_CALL = "e_call";
field public static final java.lang.String EXTRA_IS_CALL_PULL = "CallPull";
field public static final java.lang.String EXTRA_OI = "oi";
field public static final java.lang.String EXTRA_OIR = "oir";

View File

@@ -117,12 +117,14 @@ public final class ImsCallProfile implements Parcelable {
* @hide
*/
public static final String EXTRA_CONFERENCE = "conference";
/**
* Boolean extra property set on an {@link ImsCallProfile} to indicate that this call is an
* emergency call. The {@link ImsService} sets this on a call to indicate that the network has
* identified the call as an emergency call.
*/
public static final String EXTRA_E_CALL = "e_call";
public static final String EXTRA_EMERGENCY_CALL = "e_call";
/**
* @hide
*/