summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJustin Harrison <astyrrian@google.com>2014-12-05 07:42:57 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-12-05 07:42:59 +0000
commitcff6d450dcef733499f584522ae1faa92940366c (patch)
tree4cff844eb77defab49170278727e6c7429d75dc9 /packages
parentc8640fca7862fee5e156fa634c1cdf7853115595 (diff)
parent4b9f8ede4e012e5522716bba84c6037a83ee52f9 (diff)
downloadframeworks_base-cff6d450dcef733499f584522ae1faa92940366c.zip
frameworks_base-cff6d450dcef733499f584522ae1faa92940366c.tar.gz
frameworks_base-cff6d450dcef733499f584522ae1faa92940366c.tar.bz2
Merge "Ensure that the USER_PRESENT_INTENT is sent to all profiles of the current user." into lmp-mr1-dev
Diffstat (limited to 'packages')
-rw-r--r--packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
index 206fc43..7ac0daf 100644
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
@@ -72,6 +72,7 @@ import com.android.systemui.statusbar.phone.StatusBarKeyguardViewManager;
import com.android.systemui.statusbar.phone.StatusBarWindowManager;
import java.util.ArrayList;
+import java.util.List;
import static android.provider.Settings.System.SCREEN_OFF_TIMEOUT;
@@ -1217,7 +1218,12 @@ public class KeyguardViewMediator extends SystemUI {
synchronized (this) {
if (mBootCompleted) {
final UserHandle currentUser = new UserHandle(mLockPatternUtils.getCurrentUser());
- mContext.sendBroadcastAsUser(USER_PRESENT_INTENT, currentUser);
+ final UserManager um = (UserManager) mContext.getSystemService(
+ Context.USER_SERVICE);
+ List <UserInfo> userHandles = um.getProfiles(currentUser.getIdentifier());
+ for (UserInfo ui : userHandles) {
+ mContext.sendBroadcastAsUser(USER_PRESENT_INTENT, ui.getUserHandle());
+ }
} else {
mBootSendUserPresent = true;
}