Merge "Fix logic in disabling BackupTransport in DO mode." into nyc-mr1-dev

This commit is contained in:
Vladislav Kuzkokov
2016-09-28 21:15:06 +00:00
committed by Android (Google) Code Review

View File

@@ -8987,8 +8987,10 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
if (!isDeviceOwnerManagedSingleUserDevice()) {
mInjector.securityLogSetLoggingEnabledProperty(false);
Slog.w(LOG_TAG, "Security logging turned off as it's no longer a single user device.");
setBackupServiceEnabledInternal(false);
Slog.w(LOG_TAG, "Backup is off as it's a managed device that has more that one user.");
if (mOwners.hasDeviceOwner()) {
setBackupServiceEnabledInternal(false);
Slog.w(LOG_TAG, "Backup is off as it's a managed device that has more that one user.");
}
}
}