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

Commit c9f43e91 authored by Sandeep Kunta's avatar Sandeep Kunta Committed by Linux Build Service Account
Browse files

MSIM(DSDA): Keep the tone ids consistent with Audio module

Keep tone ids of TONE_LOCAL_CW, TONE_SUPERVISORY_CH & TONE_HOLD_RECALL
consistant with audio module to avoid mismatch of tone id values
between telephony & audio.

Change-Id: I9911c0e5c71b16120bf49d172c6fa69581202247
CRs-Fixed: 720550
parent 0f8bfc50
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -728,18 +728,24 @@ public class ToneGenerator
     * @see #ToneGenerator(int, int)
     */
    public static final int TONE_CDMA_SIGNAL_OFF = 98;
    /**
     * LOCAL_CW - 440Hz
     *
     * @hide #ToneGenerator(int, int)
     */
    public static final int TONE_LOCAL_CW = 99;
    /**
     * SUPERVISORY_CH - 440Hz
     *
     * @hide #ToneGenerator(int, int)
     */
    public static final int TONE_SUPERVISORY_CH = 99;
    public static final int TONE_SUPERVISORY_CH = 100;
    /**
     * HOLD_RECALL - 440Hz
     *
     * @hide #ToneGenerator(int, int)
     */
    public static final int TONE_HOLD_RECALL = 100;
    public static final int TONE_HOLD_RECALL = 101;

    /** Maximum volume, for use with {@link #ToneGenerator(int,int)} */
    public static final int MAX_VOLUME = 100;