Adds CONTAINER_QSB to be used for QSB data.

Also updates some related generics definitions for
better/simpler compile-time checks.

Bug: 178536734
Test: Manual
Change-Id: If439b64ad968f62674f856fd3ff465bf21cc9204
This commit is contained in:
Andy Wickham
2021-02-10 21:36:51 -08:00
parent f8bb6c02a1
commit 19ab177d1b
3 changed files with 40 additions and 33 deletions

View File

@@ -39,6 +39,6 @@ public interface BcSmartspaceDataPlugin extends Plugin {
/** Provides Smartspace data to registered listeners. */
interface SmartspaceTargetListener {
/** Each Parcelable is a SmartspaceTarget that represents a card. */
void onSmartspaceTargetsUpdated(List<Parcelable> targets);
void onSmartspaceTargetsUpdated(List<? extends Parcelable> targets);
}
}