summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/LauncherSettings.java
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2009-12-02 20:10:07 -0800
committerRomain Guy <romainguy@android.com>2009-12-02 20:10:07 -0800
commit7eb9e5e9257635cee5609ed633eb575fda93dd5a (patch)
tree49540dd2d30528a7291509972a718e0dd5f6a5ea /src/com/android/launcher2/LauncherSettings.java
parentb0c27f254a9929be208d5e04554f438076c833bc (diff)
downloadandroid_packages_apps_Trebuchet-7eb9e5e9257635cee5609ed633eb575fda93dd5a.tar.gz
android_packages_apps_Trebuchet-7eb9e5e9257635cee5609ed633eb575fda93dd5a.tar.bz2
android_packages_apps_Trebuchet-7eb9e5e9257635cee5609ed633eb575fda93dd5a.zip
Upgrade Home db to upgrade contacts shortcut to the quick contact action
Change-Id: Icb5606e340a6eafc06ffd1be4bbe3d4f988376d1
Diffstat (limited to 'src/com/android/launcher2/LauncherSettings.java')
-rw-r--r--src/com/android/launcher2/LauncherSettings.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/com/android/launcher2/LauncherSettings.java b/src/com/android/launcher2/LauncherSettings.java
index a930acd52..a438d47cb 100644
--- a/src/com/android/launcher2/LauncherSettings.java
+++ b/src/com/android/launcher2/LauncherSettings.java
@@ -90,37 +90,6 @@ class LauncherSettings {
static final String ICON = "icon";
}
- static final class Gestures implements BaseLauncherColumns {
- /**
- * The content:// style URL for this table
- */
- static final Uri CONTENT_URI = Uri.parse("content://" +
- LauncherProvider.AUTHORITY + "/" + LauncherProvider.TABLE_GESTURES +
- "?" + LauncherProvider.PARAMETER_NOTIFY + "=true");
-
- /**
- * The content:// style URL for this table. When this Uri is used, no notification is
- * sent if the content changes.
- */
- static final Uri CONTENT_URI_NO_NOTIFICATION = Uri.parse("content://" +
- LauncherProvider.AUTHORITY + "/" + LauncherProvider.TABLE_GESTURES +
- "?" + LauncherProvider.PARAMETER_NOTIFY + "=false");
-
- /**
- * The content:// style URL for a given row, identified by its id.
- *
- * @param id The row id.
- * @param notify True to send a notification is the content changes.
- *
- * @return The unique content URL for the specified row.
- */
- static Uri getContentUri(long id, boolean notify) {
- return Uri.parse("content://" + LauncherProvider.AUTHORITY +
- "/" + LauncherProvider.TABLE_GESTURES + "/" + id + "?" +
- LauncherProvider.PARAMETER_NOTIFY + "=" + notify);
- }
- }
-
/**
* Favorites. When changing these values, be sure to update
* {@link com.android.settings.LauncherAppWidgetBinder} as needed.