Merge "Call isUserUnlockingOrUnlocked with cleared identity" into nyc-dev

am: b7bd2e645d

* commit 'b7bd2e645db390373d4f0847c7637d06faa1d4da':
  Call isUserUnlockingOrUnlocked with cleared identity

Change-Id: I2b80b409fb8f5829813aec7485d97fcf88ab4959
This commit is contained in:
Fyodor Kupolov
2016-05-13 17:12:04 +00:00
committed by android-build-merger

View File

@@ -677,16 +677,17 @@ class ActivityStarter {
// app in a locked managed profile from an unlocked parent allow it to resolve
// as user will be sent via confirm credentials to unlock the profile.
UserManager userManager = UserManager.get(mService.mContext);
UserInfo parent = null;
boolean profileLockedAndParentUnlockingOrUnlocked = false;
long token = Binder.clearCallingIdentity();
try {
parent = userManager.getProfileParent(userId);
UserInfo parent = userManager.getProfileParent(userId);
profileLockedAndParentUnlockingOrUnlocked = (parent != null)
&& userManager.isUserUnlockingOrUnlocked(parent.id)
&& !userManager.isUserUnlockingOrUnlocked(userId);
} finally {
Binder.restoreCallingIdentity(token);
}
if (parent != null
&& userManager.isUserUnlockingOrUnlocked(parent.getUserHandle())
&& !userManager.isUserUnlockingOrUnlocked(userInfo.getUserHandle())) {
if (profileLockedAndParentUnlockingOrUnlocked) {
rInfo = mSupervisor.resolveIntent(intent, resolvedType, userId,
PackageManager.MATCH_DIRECT_BOOT_AWARE
| PackageManager.MATCH_DIRECT_BOOT_UNAWARE);