diff options
| author | Tyler Gunn <tgunn@google.com> | 2014-09-02 14:48:16 -0700 |
|---|---|---|
| committer | Tyler Gunn <tgunn@google.com> | 2014-09-02 14:48:16 -0700 |
| commit | cf38b8464007ebf626fc0d61a646491fc3d794cd (patch) | |
| tree | 91f20b5b968640455dc89fbf6903266e037b24c9 | |
| parent | 0f722c7f09ce67e058eb1cfaabf1d85f1abdf797 (diff) | |
| download | android_frameworks_opt_net_voip-cf38b8464007ebf626fc0d61a646491fc3d794cd.tar.gz android_frameworks_opt_net_voip-cf38b8464007ebf626fc0d61a646491fc3d794cd.tar.bz2 android_frameworks_opt_net_voip-cf38b8464007ebf626fc0d61a646491fc3d794cd.zip | |
Add supported URI scheme to PhoneAccounts. (2/4)staging/cm-12.1staging/cm-12.0-cafstable/cm-12.1-YOG7Dstable/cm-12.1-YOG4Pstable/cm-12.1-YOG3Cstable/cm-12.0-YNG4Nstable/cm-12.0-YNG3Cstable/cm-12.0-YNG1TAstable/cm-12.0-YNG1Tstable/cm-12.0-YNG1Icm-12.1cm-12.0
Added new SipManager intent used to communicate a change in the
SIP call option to the Telephony layer.
Bug: 17140110
Change-Id: Ie2133c33bf19552f29c86a67c142d08a6f0e6135
| -rw-r--r-- | src/java/android/net/sip/SipManager.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/java/android/net/sip/SipManager.java b/src/java/android/net/sip/SipManager.java index a94232a..715acfb 100644 --- a/src/java/android/net/sip/SipManager.java +++ b/src/java/android/net/sip/SipManager.java @@ -108,6 +108,17 @@ public class SipManager { */ public static final String ACTION_SIP_REMOVE_PHONE = "com.android.phone.SIP_REMOVE_PHONE"; + + /** + * Action string for the SIP call option configuration changed intent. + * This is used to communicate change to the SIP call option, triggering re-registration of + * the SIP phone accounts. + * Internal use only. + * @hide + */ + public static final String ACTION_SIP_CALL_OPTION_CHANGED = + "com.android.phone.SIP_CALL_OPTION_CHANGED"; + /** * Part of the ACTION_SIP_ADD_PHONE and ACTION_SIP_REMOVE_PHONE intents. * Internal use only. |
