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

Commit 95d7364b authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 11654651 from c8765124 to 24Q3-release

Change-Id: I2f22e120ce44622ebefcd060615bdb4fd7826907
parents 82492d9b c8765124
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -19,8 +19,6 @@ package android.app.job;
import android.annotation.SystemApi;
import android.app.JobSchedulerImpl;
import android.app.SystemServiceRegistry;
import android.app.tare.EconomyManager;
import android.app.tare.IEconomyManager;
import android.content.Context;
import android.os.DeviceIdleManager;
import android.os.IDeviceIdleController;
@@ -58,8 +56,5 @@ public class JobSchedulerFrameworkInitializer {
        SystemServiceRegistry.registerContextAwareService(
                Context.POWER_EXEMPTION_SERVICE, PowerExemptionManager.class,
                PowerExemptionManager::new);
        SystemServiceRegistry.registerStaticService(
                Context.RESOURCE_ECONOMY_SERVICE, EconomyManager.class,
                (b) -> new EconomyManager(IEconomyManager.Stub.asInterface(b)));
    }
}
+0 −653

File deleted.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Diff line number Diff line
include /apex/jobscheduler/service/java/com/android/server/tare/OWNERS
 No newline at end of file
+1 −9
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ import java.util.Date;
 */
class Alarm {
    @VisibleForTesting
    public static final int NUM_POLICIES = 5;
    public static final int NUM_POLICIES = 4;
    /**
     * Index used to store the time the alarm was requested to expire. To be used with
     * {@link #setPolicyElapsed(int, long)}.
@@ -68,12 +68,6 @@ class Alarm {
     */
    public static final int BATTERY_SAVER_POLICY_INDEX = 3;

    /**
     * Index used to store the earliest time the alarm can expire based on TARE policy.
     * To be used with {@link #setPolicyElapsed(int, long)}.
     */
    public static final int TARE_POLICY_INDEX = 4;

    /**
     * Reason to use for inexact alarms.
     */
@@ -278,8 +272,6 @@ class Alarm {
                return "device_idle";
            case BATTERY_SAVER_POLICY_INDEX:
                return "battery_saver";
            case TARE_POLICY_INDEX:
                return "tare";
            default:
                return "--unknown(" + index + ")--";
        }
+6 −319

File changed.

Preview size limit exceeded, changes collapsed.

Loading