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

Commit 465cec04 authored by Yorke Lee's avatar Yorke Lee Committed by Android (Google) Code Review
Browse files

Merge "Implement DTMF tones in test RemoteConference" into lmp-dev

parents b3c4b285 c43894f9
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -256,6 +256,17 @@ public class TestConnectionManager extends ConnectionService {
                mRemote.unregisterCallback(mRemoteCallback);
                mManagedConferenceByRemote.remove(mRemote);
            }

        };

        @Override
        public void onPlayDtmfTone(char c) {
            mRemote.playDtmfTone(c);
        };

        @Override
        public void onStopDtmfTone() {
            mRemote.stopDtmfTone();
        };

        private final RemoteConference mRemote;