Adding support for Cdma conference calling.

Adding methods to merge and swap Cdma conference
calls from hangouts.

Bug: 17658943
Change-Id: I0ce472415e3455503223fc0dab5e1a8ee415cde9
This commit is contained in:
mike dooley
2014-09-25 14:49:21 -07:00
parent 91807556a8
commit 95ea5765dc

View File

@@ -166,6 +166,20 @@ public final class RemoteConference {
}
}
public void merge() {
try {
mConnectionService.mergeConference(mId);
} catch (RemoteException e) {
}
}
public void swap() {
try {
mConnectionService.swapConference(mId);
} catch (RemoteException e) {
}
}
public void hold() {
try {
mConnectionService.hold(mId);