Merge "Update TV input list upon package state changes in Kids profile" into sc-dev am: a93719505c

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15330816

Change-Id: I28e71bc6ca24978d86082e25f7892f4673f39517
This commit is contained in:
TreeHugger Robot
2021-07-21 06:40:15 +00:00
committed by Automerger Merge Worker

View File

@@ -209,10 +209,11 @@ public final class TvInputManagerService extends SystemService {
private void registerBroadcastReceivers() {
PackageMonitor monitor = new PackageMonitor() {
private void buildTvInputList(String[] packages) {
int userId = getChangingUserId();
synchronized (mLock) {
if (mCurrentUserId == getChangingUserId()) {
buildTvInputListLocked(mCurrentUserId, packages);
buildTvContentRatingSystemListLocked(mCurrentUserId);
if (mCurrentUserId == userId || mRunningProfiles.contains(userId)) {
buildTvInputListLocked(userId, packages);
buildTvContentRatingSystemListLocked(userId);
}
}
}