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

Commit c635cc9a authored by Yorke Lee's avatar Yorke Lee Committed by Android Git Automerger
Browse files

am 465cec04: Merge "Implement DTMF tones in test RemoteConference" into lmp-dev

* commit '465cec04':
  Implement DTMF tones in test RemoteConference
parents 0fada668 465cec04
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;