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

Commit b901c969 authored by Suchand Ghosh's avatar Suchand Ghosh
Browse files

Telephony: Add an interface for video call ringback tone

There is no such interface for video call.
Add the ringback tone interface which will be implemented to start
or stop playing the ringback tone at the right time.

Change-Id: Ifbe60bdb6e8b4e10cf12a3bb78f0f897c6f3d81b
parent 345f198b
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -60,4 +60,10 @@ oneway interface ICsvtServiceListener{
     * @param fi, Call Forwarding options.
     * @param fi, Call Forwarding options.
     */
     */
    void onCallForwardingOptions(in List<CallForwardInfoP> fi);
    void onCallForwardingOptions(in List<CallForwardInfoP> fi);

    /**
     * Called to notify about ringback tone state.
     * @param playTone, if true ringback tone will be played, false otherwise.
     */
    void onRingbackTone(boolean playTone);
}
}