diff options
author | 2024-12-11 05:39:57 -0800 | |
---|---|---|
committer | 2024-12-11 05:39:57 -0800 | |
commit | 9eef766e1bc0c3415a8eecbaf1a7444af48c316c (patch) | |
tree | 8e1d154340e1e0c902f019bde8aad2eafc474b05 /apex | |
parent | 7481351536b385c58fe320a5f206f40c4f999a59 (diff) | |
parent | 5e598be3194149d82ea0a09bd1033ac4af4b2cac (diff) |
Merge "Implement search suggestions API in SearchDataService" into main
Diffstat (limited to 'apex')
-rw-r--r-- | apex/framework/java/android/provider/CloudMediaProviderContract.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/apex/framework/java/android/provider/CloudMediaProviderContract.java b/apex/framework/java/android/provider/CloudMediaProviderContract.java index 3bf0fed96..4ae58c5f1 100644 --- a/apex/framework/java/android/provider/CloudMediaProviderContract.java +++ b/apex/framework/java/android/provider/CloudMediaProviderContract.java @@ -1471,6 +1471,36 @@ public final class CloudMediaProviderContract { "com.android.providers.media.SEARCH_SUGGESTION_HISTORY"; /** + * Favorite's album suggestion + * @see SearchSuggestionColumns#TYPE + * Type: STRING + * + * @hide + */ + public static final String SEARCH_SUGGESTION_FAVORITES_ALBUM = + "com.android.providers.media.SEARCH_SUGGESTION_FAVORITES_ALBUM"; + + /** + * Screenshot's album suggestion + * @see SearchSuggestionColumns#TYPE + * Type: STRING + * + * @hide + */ + public static final String SEARCH_SUGGESTION_SCREENSHOTS_ALBUM = + "com.android.providers.media.SEARCH_SUGGESTION_SCREENSHOTS_ALBUM"; + + /** + * Videos's album suggestion + * @see SearchSuggestionColumns#TYPE + * Type: STRING + * + * @hide + */ + public static final String SEARCH_SUGGESTION_VIDEOS_ALBUM = + "com.android.providers.media.SEARCH_SUGGESTION_VIDEOS_ALBUM"; + + /** * Defines the different types of search suggestions available and supported in photo picker. * * @see SearchSuggestionColumns#TYPE |