Merge "Defer broadcasting ACTION_DEFERRED_ACTIVITY_CHANGED until actual change" into qt-dev

This commit is contained in:
Winson Chung
2019-04-08 19:05:27 +00:00
committed by Android (Google) Code Review
3 changed files with 25 additions and 11 deletions

View File

@@ -193,8 +193,10 @@ public abstract class PackageManagerInternal {
*
* @param packageName package name of the default home, or {@code null} to remove
* @param userId the user id
* @param callback the callback made after the default home as been updated
*/
void setDefaultHomeAsync(@Nullable String packageName, @UserIdInt int userId);
void setDefaultHomeAsync(@Nullable String packageName, @UserIdInt int userId,
@NonNull Consumer<Boolean> callback);
}
/**