From b619c9198efa0108a692d352b0e7eaa534f922f3 Mon Sep 17 00:00:00 2001 From: Karl Rosaen Date: Fri, 8 May 2009 14:28:51 -0700 Subject: [PATCH] Define mime type for shortcut validation path. --- core/java/android/app/SearchManager.java | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/core/java/android/app/SearchManager.java b/core/java/android/app/SearchManager.java index 90de40d66c531..3bf37c3b2b016 100644 --- a/core/java/android/app/SearchManager.java +++ b/core/java/android/app/SearchManager.java @@ -1183,6 +1183,13 @@ public class SearchManager */ public final static String SUGGEST_URI_PATH_QUERY = "search_suggest_query"; + /** + * MIME type for suggestions data. You'll use this in your suggestions content provider + * in the getType() function. + */ + public final static String SUGGEST_MIME_TYPE = + "vnd.android.cursor.dir/vnd.android.search.suggest"; + /** * Uri path for shortcut validation. This is the path that the search manager will use when * querying your content provider to refresh a shortcutted suggestion result and to check if it @@ -1190,17 +1197,19 @@ public class SearchManager * result indicates the shortcut refers to a no longer valid sugggestion. * * @see #SUGGEST_COLUMN_SHORTCUT_ID - * @hide + * + * @hide pending API council approval */ public final static String SUGGEST_URI_PATH_SHORTCUT = "search_suggest_shortcut"; /** - * MIME type for suggestions data. You'll use this in your suggestions content provider + * MIME type for shortcut validation. You'll use this in your suggestions content provider * in the getType() function. + * + * @hide pending API council approval */ - public final static String SUGGEST_MIME_TYPE = - "vnd.android.cursor.dir/vnd.android.search.suggest"; - + public final static String SHORTCUT_MIME_TYPE = + "vnd.android.cursor.item/vnd.android.search.suggest"; /** * Column name for suggestions cursor. Unused - can be null or column can be omitted. */