summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2015-07-21 17:39:46 -0700
committerDianne Hackborn <hackbod@google.com>2015-07-21 17:39:46 -0700
commit451c3468b9186790d5381334a736a35f9b1dab36 (patch)
tree380767cedd3546676ae04008742b58f673a43cb1 /core
parent673ccfd45a81482d97eecf76dc0fef0dfd57be73 (diff)
downloadframeworks_base-451c3468b9186790d5381334a736a35f9b1dab36.zip
frameworks_base-451c3468b9186790d5381334a736a35f9b1dab36.tar.gz
frameworks_base-451c3468b9186790d5381334a736a35f9b1dab36.tar.bz2
Fix issue #22612630: Ensure SMS/Call delivery during Doze
Add whitelist timeout for SMS. Change-Id: I3392093000ad177a93b6ef36fb18f0398a671423
Diffstat (limited to 'core')
-rw-r--r--core/java/android/os/IDeviceIdleController.aidl1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/os/IDeviceIdleController.aidl b/core/java/android/os/IDeviceIdleController.aidl
index b768852..d3eec1e 100644
--- a/core/java/android/os/IDeviceIdleController.aidl
+++ b/core/java/android/os/IDeviceIdleController.aidl
@@ -29,5 +29,6 @@ interface IDeviceIdleController {
boolean isPowerSaveWhitelistApp(String name);
void addPowerSaveTempWhitelistApp(String name, long duration, int userId, String reason);
long addPowerSaveTempWhitelistAppForMms(String name, int userId, String reason);
+ long addPowerSaveTempWhitelistAppForSms(String name, int userId, String reason);
void exitIdle(String reason);
}