diff options
| author | Dianne Hackborn <hackbod@google.com> | 2016-02-10 16:28:29 -0800 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2016-03-09 17:39:40 -0800 |
| commit | 262ae5c8eb1579bccaa0f6953b39e6fd65ff2288 (patch) | |
| tree | 4565a03eb3d3cd26af80a9cbbb55067322ca7ec5 /core/java/android | |
| parent | 2d57bd2342b9a60ca9f65d61ee7ce43fa31949d3 (diff) | |
DO NOT MERGE: Add separate information about user whitelist.
Use this in the alarm manager to allow user whitelisted apps
to have free access to scheduling alarms.
Coming next: lifting sync/job restrictions.
Bug #26851107: Allow user whitelist apps more freedom
(Cherry-picked to nyc since it got lost in the branch from master.)
Change-Id: I4dc9f07514627ebdb6b6eff7c7a749f2c51a3797
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/os/IDeviceIdleController.aidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/os/IDeviceIdleController.aidl b/core/java/android/os/IDeviceIdleController.aidl index 838279bf38f9..082194ba6162 100644 --- a/core/java/android/os/IDeviceIdleController.aidl +++ b/core/java/android/os/IDeviceIdleController.aidl @@ -25,10 +25,12 @@ interface IDeviceIdleController { void removePowerSaveWhitelistApp(String name); String[] getSystemPowerWhitelistExceptIdle(); String[] getSystemPowerWhitelist(); + String[] getUserPowerWhitelist(); String[] getFullPowerWhitelistExceptIdle(); String[] getFullPowerWhitelist(); int[] getAppIdWhitelistExceptIdle(); int[] getAppIdWhitelist(); + int[] getAppIdUserWhitelist(); int[] getAppIdTempWhitelist(); boolean isPowerSaveWhitelistExceptIdleApp(String name); boolean isPowerSaveWhitelistApp(String name); |
