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

Commit e677896f authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Telephony: Add CDMA call forwarding function."

parents ce6bf0b4 a5ba0e5b
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
@@ -2733,4 +2733,37 @@ 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";

    }
}