From ae4cc1519db844f2f5e8c3a56adefeba13b217cb Mon Sep 17 00:00:00 2001 From: Pavel Zhamaitsiak Date: Thu, 11 Feb 2016 17:19:09 -0800 Subject: [PATCH] Add registrationAssociatedUriChanged to ImsRegistrationListener This callback will be used to pass list of associated URIs. It is needed in case SIM doesn't have line1Number populated. Bug: 24613146 Change-Id: I698ce58dbedb858dc59836069e6f10fec6d02ae6 --- .../com/android/ims/internal/IImsRegistrationListener.aidl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl b/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl index 69259d078bafe..04cb1f2787929 100644 --- a/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl +++ b/telephony/java/com/android/ims/internal/IImsRegistrationListener.aidl @@ -18,6 +18,8 @@ package com.android.ims.internal; import com.android.ims.ImsReasonInfo; +import android.net.Uri; + /** * A listener type for receiving notifications about the changes to * the IMS connection(registration). @@ -100,4 +102,9 @@ interface IImsRegistrationListener { * @param count The number of waiting voice messages. */ void voiceMessageCountUpdate(int count); + + /** + * Notifies the application when the list of URIs associated with IMS client is updated. + */ + void registrationAssociatedUriChanged(in Uri[] uris); }