summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-09-02 14:48:16 -0700
committerTyler Gunn <tgunn@google.com>2014-09-02 14:48:16 -0700
commitcf38b8464007ebf626fc0d61a646491fc3d794cd (patch)
tree91f20b5b968640455dc89fbf6903266e037b24c9
parent0f722c7f09ce67e058eb1cfaabf1d85f1abdf797 (diff)
downloadandroid_frameworks_opt_net_voip-cf38b8464007ebf626fc0d61a646491fc3d794cd.tar.gz
android_frameworks_opt_net_voip-cf38b8464007ebf626fc0d61a646491fc3d794cd.tar.bz2
android_frameworks_opt_net_voip-cf38b8464007ebf626fc0d61a646491fc3d794cd.zip
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.java11
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.