diff options
author | Tyler Gunn <tgunn@google.com> | 2015-04-14 18:19:11 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2015-04-14 18:19:11 +0000 |
commit | 9561e7410b39da22c45ba3e423b1361735ccec3e (patch) | |
tree | 64b60644753882edf218c65ea56eeae5c3d95907 /telephony | |
parent | 3541e9f469c3cb563bb89d52cbe7daf9e0f8d124 (diff) | |
parent | 6b91ebf58c928987ead635bb1c49a16965d4c835 (diff) | |
download | frameworks_base-9561e7410b39da22c45ba3e423b1361735ccec3e.zip frameworks_base-9561e7410b39da22c45ba3e423b1361735ccec3e.tar.gz frameworks_base-9561e7410b39da22c45ba3e423b1361735ccec3e.tar.bz2 |
Prevent merging conference calls hosted on peer device.
automerge: 6b91ebf
* commit '6b91ebf58c928987ead635bb1c49a16965d4c835':
Prevent merging conference calls hosted on peer device.
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 84d1c545..0443c3e 100644 --- a/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl +++ b/telephony/java/com/android/ims/internal/IImsCallSessionListener.aidl @@ -115,4 +115,12 @@ interface IImsCallSessionListener { * - {@link com.android.internal.telephony.Phone#TTY_MODE_VCO} */ void callSessionTtyModeReceived(in IImsCallSession session, in int mode); + + /** + * Notifies of a change to the multiparty state for this {@code ImsCallSession}. + * + * @param session The call session. + * @param isMultiParty {@code true} if the session became multiparty, {@code false} otherwise. + */ + void callSessionMultipartyStateChanged(in IImsCallSession session, in boolean isMultiParty); } |