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

Commit c43894f9 authored by Yorke Lee's avatar Yorke Lee
Browse files

Implement DTMF tones in test RemoteConference

Bug: 17512380
Change-Id: I645366e38d52ab6f09664a3466306eb5bfe9daf2
parent 2fb76dd5
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -253,6 +253,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;