Merge "[OneSearch] Add onesearch plugin api to trigger image from URL." into sc-v2-dev

This commit is contained in:
TreeHugger Robot 2021-10-29 00:36:42 +00:00 committed by Android (Google) Code Review
commit e9652c9a63
1 changed files with 3 additions and 0 deletions

View File

@ -40,4 +40,7 @@ public interface OneSearch extends Plugin {
* @param query The query to get the search suggests for.
*/
ArrayList<Parcelable> getSuggests(Parcelable query);
/** Get image bitmap with the URL. */
Parcelable getImageBitmap(String imageUrl);
}