Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98a145b5 authored by Vladislav Kuzkokov's avatar Vladislav Kuzkokov Committed by android-build-merger
Browse files

Revert "Fix backup for users hit by erroneous backup disabling"

am: 9f61d17e

Change-Id: I460fbb670fbc7a724c981c4fceae0048ff4c9ded
parents 0dcdae30 9f61d17e
Loading
Loading
Loading
Loading
+6 −15
Original line number Diff line number Diff line
@@ -496,12 +496,6 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
                    }
                });
            }
            // STOPSHIP: Remove this code once all dogfood devices are fixed. See b/31754835
            if (Intent.ACTION_BOOT_COMPLETED.equals(action) && !mOwners.hasDeviceOwner()
                    && !isBackupServiceEnabledInternal()) {
                setBackupServiceEnabledInternal(true);
                Slog.w(LOG_TAG, "Fix backup for device that is not in Device Owner mode.");
            }
            if (Intent.ACTION_USER_UNLOCKED.equals(action)
                    || Intent.ACTION_USER_STARTED.equals(action)
                    || KeyChain.ACTION_STORAGE_CHANGED.equals(action)) {
@@ -9327,10 +9321,6 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
        }
        synchronized (this) {
            getActiveAdminForCallerLocked(admin, DeviceAdminInfo.USES_POLICY_DEVICE_OWNER);
            return isBackupServiceEnabledInternal();
        }
    }
    private boolean isBackupServiceEnabledInternal() {
            try {
                IBackupManager ibm = mInjector.getIBackupManager();
                return ibm != null && ibm.isBackupServiceActive(UserHandle.USER_SYSTEM);
@@ -9339,3 +9329,4 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
            }
        }
    }
}