diff options
author | John Huang <jsh@google.com> | 2010-10-18 13:44:57 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-10-18 13:44:57 -0700 |
commit | 085996c411b4d3878dfd97c59bfc4a17da08959b (patch) | |
tree | 94e6c57d1ac69315a25d406a021ce5ef4ae278cd /voip | |
parent | 3e9bcb98c4190b18d113e79ead071a86cd7ca480 (diff) | |
parent | 45bd8303fe20f20843f5a76ddf42a5ace54add58 (diff) | |
download | frameworks_base-085996c411b4d3878dfd97c59bfc4a17da08959b.zip frameworks_base-085996c411b4d3878dfd97c59bfc4a17da08959b.tar.gz frameworks_base-085996c411b4d3878dfd97c59bfc4a17da08959b.tar.bz2 |
am 45bd8303: Merge "Uncomment SIP/VOIP feature check in SipManager." into gingerbread
Merge commit '45bd8303fe20f20843f5a76ddf42a5ace54add58' into gingerbread-plus-aosp
* commit '45bd8303fe20f20843f5a76ddf42a5ace54add58':
Uncomment SIP/VOIP feature check in SipManager.
Diffstat (limited to 'voip')
-rw-r--r-- | voip/java/android/net/sip/SipManager.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/voip/java/android/net/sip/SipManager.java b/voip/java/android/net/sip/SipManager.java index ee0e3cd..2f03e34 100644 --- a/voip/java/android/net/sip/SipManager.java +++ b/voip/java/android/net/sip/SipManager.java @@ -126,22 +126,16 @@ public class SipManager { * Returns true if the SIP API is supported by the system. */ public static boolean isApiSupported(Context context) { - return true; - /* TODO: uncomment this before ship return context.getPackageManager().hasSystemFeature( PackageManager.FEATURE_SIP); - */ } /** * Returns true if the system supports SIP-based VoIP. */ public static boolean isVoipSupported(Context context) { - return true; - /* TODO: uncomment this before ship return context.getPackageManager().hasSystemFeature( PackageManager.FEATURE_SIP_VOIP) && isApiSupported(context); - */ } /** |