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

Commit e6ae3fde authored by Sailesh Nepal's avatar Sailesh Nepal Committed by Android (Google) Code Review
Browse files

Merge "Adding support for Cdma conference calling." into lmp-dev

parents 663a52d6 95ea5765
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -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);