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

Commit cf969369 authored by Tyler Gunn's avatar Tyler Gunn Committed by Android (Google) Code Review
Browse files

Merge "IMS call merge call-back changes." into lmp-mr1-dev

parents e20dd304 f764e807
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -160,10 +160,13 @@ interface IImsCallSession {
    void resume(in ImsStreamMediaProfile profile);

    /**
     * Merges the active & hold call. When it succeeds, {@link Listener#callSessionMerged}
     * is called.
     * Merges the active & hold call. When the merge starts,
     * {@link Listener#callSessionMergeStarted} is called.
     * {@link Listener#callSessionMergeComplete} is called if the merge is successful, and
     * {@link Listener#callSessionMergeFailed} is called if the merge fails.
     *
     * @see Listener#callSessionMerged, Listener#callSessionMergeFailed
     * @see Listener#callSessionMergeStarted, Listener#callSessionMergeComplete,
     *      Listener#callSessionMergeFailed
     */
    void merge();

+3 −2
Original line number Diff line number Diff line
@@ -48,10 +48,11 @@ interface IImsCallSessionListener {
    void callSessionResumeReceived(in IImsCallSession session, in ImsCallProfile profile);

    /**
     * Notifiies the result of call merge operation.
     * Notifies the result of call merge operation.
     */
    void callSessionMerged(in IImsCallSession session,
    void callSessionMergeStarted(in IImsCallSession session,
            in IImsCallSession newSession, in ImsCallProfile profile);
    void callSessionMergeComplete(in IImsCallSession session);
    void callSessionMergeFailed(in IImsCallSession session,
            in ImsReasonInfo reasonInfo);