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
This commit is contained in:
Pavel Zhamaitsiak
2016-02-11 17:19:09 -08:00
committed by Nathan Harold
parent 17469433e3
commit ae4cc1519d

View File

@@ -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);
}