From 95b15c35608fe3ea679c8a478c6cbd841623371e Mon Sep 17 00:00:00 2001 From: Chia-chi Yeh Date: Thu, 2 Sep 2010 22:15:26 +0800 Subject: SipService: reduce the usage of javax.sdp.*. After this change, SipAudioCallImpl is the only place still using it. Change-Id: I5693bffa54f9e19cbfa70b45dfcf40fba04dedbb --- voip/java/android/net/sip/SipSessionAdapter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'voip/java/android/net/sip/SipSessionAdapter.java') diff --git a/voip/java/android/net/sip/SipSessionAdapter.java b/voip/java/android/net/sip/SipSessionAdapter.java index cfb71d752670..770d4ebc5d39 100644 --- a/voip/java/android/net/sip/SipSessionAdapter.java +++ b/voip/java/android/net/sip/SipSessionAdapter.java @@ -26,14 +26,14 @@ public class SipSessionAdapter extends ISipSessionListener.Stub { } public void onRinging(ISipSession session, SipProfile caller, - byte[] sessionDescription) { + String sessionDescription) { } public void onRingingBack(ISipSession session) { } - public void onCallEstablished( - ISipSession session, byte[] sessionDescription) { + public void onCallEstablished(ISipSession session, + String sessionDescription) { } public void onCallEnded(ISipSession session) { -- cgit v1.2.3