summaryrefslogtreecommitdiffstats
path: root/telephony/java/com
diff options
context:
space:
mode:
authorOmkar Kolangade <omkark@codeaurora.org>2015-05-04 17:49:14 -0700
committerLinux Build Service Account <lnxbuild@localhost>2015-10-06 03:26:05 -0600
commit8570bbd95e9764a438b51e0e478593ecbd2d7fd2 (patch)
tree2813d686f55b6dd1beceafb59a4a9b1e57d7fc65 /telephony/java/com
parentc02a10d8b626469ea64babebfd88fb96ea9ececf (diff)
downloadframeworks_base-8570bbd95e9764a438b51e0e478593ecbd2d7fd2.zip
frameworks_base-8570bbd95e9764a438b51e0e478593ecbd2d7fd2.tar.gz
frameworks_base-8570bbd95e9764a438b51e0e478593ecbd2d7fd2.tar.bz2
IMS RAT Reporting in Registration Unsol
Adding a parameter to the IMS registration complete and progressing callbacks allowing frameworks to be notified of the radio access technology over which IMS is registered. Bug: 21902225 Change-Id: I3b340da3776b617fd9d944585672bce51c5d9c1e
Diffstat (limited to 'telephony/java/com')
-rw-r--r--telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl11
1 files changed, 9 insertions, 2 deletions
diff --git a/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl b/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl
index c910600..e708b97 100644
--- a/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl
+++ b/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl
@@ -17,6 +17,7 @@
package com.android.ims.internal;
import com.android.ims.ImsReasonInfo;
+
/**
* A listener type for receiving notifications about the changes to
* the IMS connection(registration).
@@ -26,13 +27,19 @@ import com.android.ims.ImsReasonInfo;
interface IImsRegistrationListener {
/**
* Notifies the application when the device is connected to the IMS network.
+ *
+ * @param imsRadioTech the radio access technology. Valid values are {@code
+ * RIL_RADIO_TECHNOLOGY_*} defined in {@link ServiceState}.
*/
- void registrationConnected();
+ void registrationConnected(int imsRadioTech);
/**
* Notifies the application when the device is trying to connect the IMS network.
+ *
+ * @param imsRadioTech the radio access technology. Valid values are {@code
+ * RIL_RADIO_TECHNOLOGY_*} defined in {@link ServiceState}.
*/
- void registrationProgressing();
+ void registrationProgressing(int imsRadioTech);
/**
* Notifies the application when the device is disconnected from the IMS network.