aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/java/android/provider/Telephony.java33
1 files changed, 32 insertions, 1 deletions
diff --git a/src/java/android/provider/Telephony.java b/src/java/android/provider/Telephony.java
index 0fc49a11b..6a5bc8294 100644
--- a/src/java/android/provider/Telephony.java
+++ b/src/java/android/provider/Telephony.java
@@ -3102,7 +3102,6 @@ public final class Telephony {
* The content:// style URL for this table
*/
public static final Uri CONTENT_URI =
-
Uri.parse("content://blacklist");
/**
@@ -3163,4 +3162,36 @@ public final class Telephony {
*/
public static final String MESSAGE_MODE = "message";
}
+
+ /**
+ * @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";
+ }
}