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

Commit a48ce95d authored by kaiyiz's avatar kaiyiz Committed by Gerrit - the friendly Code Review server
Browse files

TelephonyProvider: Add CDMA call forwarding/waiting function

There isn't CDMA call forwarding and waiting function.

Add CDMA call forwarding/waiting function.

CRs-Fixed: 748144

Change-Id: Ic817678c6973ba6bdf8378481e6e71b3ed23af23
parent 5fd017a6
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
@@ -2963,4 +2963,36 @@ public final class Telephony {
                CMAS_CERTAINTY
        };
    }

    /**
     * @hide
     */
    public static final class CdmaCallOptions implements BaseColumns {
        /**
         * The content:// style URL for this table
         */
        public static final Uri CONTENT_URI =
                Uri.parse("content://cdma/calloption");

        /**
         * The default sort order for this table
         */
        public static final String DEFAULT_SORT_ORDER = "name ASC";

        public static final String NAME = "name";

        public static final String MCC = "mcc";

        public static final String MNC = "mnc";

        public static final String NUMERIC = "numeric";

        public static final String NUMBER = "number";

        public static final String TYPE = "type";

        public static final String CATEGORY = "category";

        public static final String STATE = "state";
    }
}