summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-07-16 18:58:00 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-16 00:46:50 +0000
commit95a18a8f961cdd760b667ad975e4c00d7bd713eb (patch)
treecfd1834d39baa35899258a8977c13f769b548bac
parent5d06ef49b1caa18bf6cf22f25db9fc7124361cda (diff)
parent9b34a4e5d1385140fbddde6b35d7c33a1df3ab58 (diff)
downloadframeworks_base-95a18a8f961cdd760b667ad975e4c00d7bd713eb.zip
frameworks_base-95a18a8f961cdd760b667ad975e4c00d7bd713eb.tar.gz
frameworks_base-95a18a8f961cdd760b667ad975e4c00d7bd713eb.tar.bz2
Merge "Make ContactPreferences use SharedPreferences instead of System settings (1/5)" into lmp-dev
-rw-r--r--core/java/android/provider/ContactsContract.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java
index 93f834a..bfe90e6 100644
--- a/core/java/android/provider/ContactsContract.java
+++ b/core/java/android/provider/ContactsContract.java
@@ -247,57 +247,6 @@ public final class ContactsContract {
}
/**
- * @hide
- */
- public static final class Preferences {
-
- /**
- * A key in the {@link android.provider.Settings android.provider.Settings} provider
- * that stores the preferred sorting order for contacts (by given name vs. by family name).
- *
- * @hide
- */
- public static final String SORT_ORDER = "android.contacts.SORT_ORDER";
-
- /**
- * The value for the SORT_ORDER key corresponding to sorting by given name first.
- *
- * @hide
- */
- public static final int SORT_ORDER_PRIMARY = 1;
-
- /**
- * The value for the SORT_ORDER key corresponding to sorting by family name first.
- *
- * @hide
- */
- public static final int SORT_ORDER_ALTERNATIVE = 2;
-
- /**
- * A key in the {@link android.provider.Settings android.provider.Settings} provider
- * that stores the preferred display order for contacts (given name first vs. family
- * name first).
- *
- * @hide
- */
- public static final String DISPLAY_ORDER = "android.contacts.DISPLAY_ORDER";
-
- /**
- * The value for the DISPLAY_ORDER key corresponding to showing the given name first.
- *
- * @hide
- */
- public static final int DISPLAY_ORDER_PRIMARY = 1;
-
- /**
- * The value for the DISPLAY_ORDER key corresponding to showing the family name first.
- *
- * @hide
- */
- public static final int DISPLAY_ORDER_ALTERNATIVE = 2;
- }
-
- /**
* A Directory represents a contacts corpus, e.g. Local contacts,
* Google Apps Global Address List or Corporate Global Address List.
* <p>