diff options
author | Shriram Ganesh <sganesh@codeaurora.org> | 2014-07-21 14:06:53 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2014-08-04 23:57:51 +0000 |
commit | af9a696b20d6ede46215dbb479b66592afebab94 (patch) | |
tree | 4dbe075780edd50a9b2707ceea28a7e10e836264 /telephony | |
parent | e069779dea07c77fb858a403c42020e39b3d9c60 (diff) | |
download | frameworks_base-af9a696b20d6ede46215dbb479b66592afebab94.zip frameworks_base-af9a696b20d6ede46215dbb479b66592afebab94.tar.gz frameworks_base-af9a696b20d6ede46215dbb479b66592afebab94.tar.bz2 |
Add changes for LTE to IWLAN Handover Notifications for an IMS Call
Change-Id: I6847ba1660df81d8d2ba610e9b27638800f71f77
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl index f36cf39..acd1eb9 100644 --- a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl +++ b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl @@ -96,4 +96,12 @@ interface IImsCallSessionListener { */ void callSessionUssdMessageReceived(in IImsCallSession session, int mode, String ussdMessage); + + /** + * Notifies of handover information for this call + */ + void callSessionHandover(in IImsCallSession session, + in int srcAccessTech, in int targetAccessTech, in ImsReasonInfo reasonInfo); + void callSessionHandoverFailed(in IImsCallSession session, + in int srcAccessTech, in int targetAccessTech, in ImsReasonInfo reasonInfo); } |