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

Commit cfdef826 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove temporary sync-as-ej allow-list." into sc-dev am: 5a268a95

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13690993

Change-Id: Ieda31c51ae9c400e1c923c7fb8f79bc250f143c0
parents 8c0708c5 5a268a95
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -268,10 +268,6 @@ public class SyncManager {

    private final SyncLogger mLogger;

    // NOTE: this is a temporary allow-list for testing purposes; it will be removed before release.
    private final String[] mEjSyncAllowedPackages = new String[]{
            "com.google.android.google", "com.android.frameworks.servicestests"};

    private boolean isJobIdInUseLockedH(int jobId, List<JobInfo> pendingJobs) {
        for (JobInfo job: pendingJobs) {
            if (job.getId() == jobId) {
@@ -991,14 +987,6 @@ public class SyncManager {
            }
        }

        final boolean scheduleAsEj =
                extras.getBoolean(ContentResolver.SYNC_EXTRAS_SCHEDULE_AS_EXPEDITED_JOB, false);
        // NOTE: this is a temporary check for internal testing - to be removed before release.
        if (scheduleAsEj && !ArrayUtils.contains(mEjSyncAllowedPackages, callingPackage)) {
            throw new IllegalArgumentException(
                    callingPackage + " is not allowed to schedule a sync as an EJ yet.");
        }

        for (AccountAndUser account : accounts) {
            // If userId is specified, do not sync accounts of other users
            if (userId >= UserHandle.USER_SYSTEM && account.userId >= UserHandle.USER_SYSTEM