diff options
author | Santos Cordon <santoscordon@google.com> | 2015-05-27 17:21:45 -0700 |
---|---|---|
committer | Santos Cordon <santoscordon@google.com> | 2015-05-28 09:43:00 -0700 |
commit | 6b7f955c2d9b231660b8c54f8ef8e8e6ad802625 (patch) | |
tree | c594cb452d2bb826d4a7c502b2ca857a81492e90 /telecomm/java/com | |
parent | 6ffab1bd65d2b5cc9e2944712058cb42babaa76b (diff) | |
download | frameworks_base-6b7f955c2d9b231660b8c54f8ef8e8e6ad802625.zip frameworks_base-6b7f955c2d9b231660b8c54f8ef8e8e6ad802625.tar.gz frameworks_base-6b7f955c2d9b231660b8c54f8ef8e8e6ad802625.tar.bz2 |
Add extras to Connections/Calls. (1/3)
Two major changes:
1) Add the notion of extras to a Connection. These extras will be
parceled through to InCallService as Call.getExtras()
2) The previously existing Call.getExtras() has been renamed to
getIntentExtras(). This name better describes the fact that these
particular extras are from the original CALL or INCOMING_CALL intents.
Change-Id: I08c1baf4f08d54757f98012f0c08b423a707c53d
Diffstat (limited to 'telecomm/java/com')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl b/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl index 67e2edb..7647444 100644 --- a/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl +++ b/telecomm/java/com/android/internal/telecom/IConnectionServiceAdapter.aidl @@ -18,6 +18,7 @@ package com.android.internal.telecom; import android.app.PendingIntent; import android.net.Uri; +import android.os.Bundle; import android.telecom.ConnectionRequest; import android.telecom.DisconnectCause; import android.telecom.ParcelableConnection; @@ -83,4 +84,6 @@ oneway interface IConnectionServiceAdapter { void setConferenceableConnections(String callId, in List<String> conferenceableCallIds); void addExistingConnection(String callId, in ParcelableConnection connection); + + void setExtras(String callId, in Bundle extras); } |