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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user