summaryrefslogtreecommitdiff
path: root/telecomm/java/android/telecom/RemoteConnectionManager.java
diff options
context:
space:
mode:
authorBrad Ebinger <breadley@google.com>2016-10-24 16:40:49 -0700
committerBrad Ebinger <breadley@google.com>2016-10-28 12:14:24 -0700
commitb32d4f8b5cd5b9c2415e291896b83267e1b4d5fe (patch)
tree1d9ee1e991b3d12b0d9fadd6cb6307cbc63fad86 /telecomm/java/android/telecom/RemoteConnectionManager.java
parent258790a2ea6faa03f8351bea9f5d602665bfebd9 (diff)
Modify AIDLs to include Session.Info
Modifies the IConnectionService.aidl file to include Session.Info information to pass from Telecom to Telephony, which is used to start external Sessions in Telephony from Telecom. Test: Manual testing and Unit Tests pass Bug: 26571395 Change-Id: Ia09a0abfa13d5167542d4c67465ea9aa1930b58b
Diffstat (limited to 'telecomm/java/android/telecom/RemoteConnectionManager.java')
-rw-r--r--telecomm/java/android/telecom/RemoteConnectionManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionManager.java b/telecomm/java/android/telecom/RemoteConnectionManager.java
index 036650927f3a..0322218d75dc 100644
--- a/telecomm/java/android/telecom/RemoteConnectionManager.java
+++ b/telecomm/java/android/telecom/RemoteConnectionManager.java
@@ -76,7 +76,7 @@ public class RemoteConnectionManager {
public void conferenceRemoteConnections(RemoteConnection a, RemoteConnection b) {
if (a.getConnectionService() == b.getConnectionService()) {
try {
- a.getConnectionService().conference(a.getId(), b.getId());
+ a.getConnectionService().conference(a.getId(), b.getId(), null /*Session.Info*/);
} catch (RemoteException e) {
}
} else {