Merge "OemLockService: remove canUserAllowOemUnlock()" into oc-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
5664b30008
@@ -28,7 +28,6 @@ interface IOemLockService {
|
||||
void setOemUnlockAllowedByUser(boolean allowed);
|
||||
boolean isOemUnlockAllowedByUser();
|
||||
|
||||
boolean canUserAllowOemUnlock();
|
||||
boolean isOemUnlockAllowed();
|
||||
boolean isDeviceOemUnlocked();
|
||||
}
|
||||
|
||||
@@ -117,24 +117,6 @@ public class OemLockManager {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether all parties other than the user allow OEM unlock meaning the user can
|
||||
* directly control whether or not the device can be OEM unlocked.
|
||||
*
|
||||
* If this is true, {@link #isOemUnlockAllowedByUser} is the same as {@link #isOemUnlockAllowed}
|
||||
*
|
||||
* @return Whether the user can directly control whether the device can be OEM unlocked.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public boolean canUserAllowOemUnlock() {
|
||||
try {
|
||||
return mService.canUserAllowOemUnlock();
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Whether the bootloader is able to OEM unlock the device.
|
||||
*
|
||||
|
||||
@@ -149,8 +149,12 @@ public class OemLockService extends SystemService {
|
||||
|
||||
final long token = Binder.clearCallingIdentity();
|
||||
try {
|
||||
if (!canUserAllowOemUnlock()) {
|
||||
throw new SecurityException("User cannot allow OEM unlock");
|
||||
if (!isOemUnlockAllowedByAdmin()) {
|
||||
throw new SecurityException("Admin does not allow OEM unlock");
|
||||
}
|
||||
|
||||
if (!mOemLock.isOemUnlockAllowedByCarrier()) {
|
||||
throw new SecurityException("Carrier does not allow OEM unlock");
|
||||
}
|
||||
|
||||
mOemLock.setOemUnlockAllowedByDevice(allowedByUser);
|
||||
@@ -171,18 +175,6 @@ public class OemLockService extends SystemService {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canUserAllowOemUnlock() {
|
||||
enforceOemUnlockReadPermission();
|
||||
|
||||
final long token = Binder.clearCallingIdentity();
|
||||
try {
|
||||
return isOemUnlockAllowedByAdmin() && mOemLock.isOemUnlockAllowedByCarrier();
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(token);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isOemUnlockAllowed() {
|
||||
enforceOemUnlockReadPermission();
|
||||
|
||||
Reference in New Issue
Block a user