Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1a67e6f authored by Sailesh Nepal's avatar Sailesh Nepal Committed by Android Git Automerger
Browse files

am 587e65b1: am 848718a0: am 5926650d: am 7461b5a0: Merge "Adding support for...

am 587e65b1: am 848718a0: am 5926650d: am 7461b5a0: Merge "Adding support for Cdma conference calling." into lmp-dev

* commit '587e65b1712817a0f5c9086aa7f63e5f7e5a7acc':
  Adding support for Cdma conference calling.
parents 61b8bfa5 fe457662
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -163,6 +163,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);