diff options
author | Adnan Begovic <adnan@cyngn.com> | 2015-12-16 13:11:46 -0800 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2015-12-18 15:01:16 -0800 |
commit | f128c0c2f9ea96b59f7fc7b5f2398ba420726a73 (patch) | |
tree | 99fade3174d96a4e988c5b7f9b46cb86a1a38d1a /telephony/java/com | |
parent | 2368c7d6fad4711c2bdef0232879f680a79d1006 (diff) | |
download | frameworks_base-f128c0c2f9ea96b59f7fc7b5f2398ba420726a73.zip frameworks_base-f128c0c2f9ea96b59f7fc7b5f2398ba420726a73.tar.gz frameworks_base-f128c0c2f9ea96b59f7fc7b5f2398ba420726a73.tar.bz2 |
base: Complete sms prompt interfaces.
Ticket: CYNGNOS-1440
Change-Id: I651bf947d4f9c85a1e521805c79f972e9955d893
Diffstat (limited to 'telephony/java/com')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ISms.aidl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/telephony/java/com/android/internal/telephony/ISms.aidl b/telephony/java/com/android/internal/telephony/ISms.aidl index 1377734..c7e13aa 100644 --- a/telephony/java/com/android/internal/telephony/ISms.aidl +++ b/telephony/java/com/android/internal/telephony/ISms.aidl @@ -467,13 +467,18 @@ interface ISms { */ String getImsSmsFormatForSubscriber(int subId); - /* + /** * Get SMS prompt property, enabled or not * @return true if enabled, false otherwise */ boolean isSMSPromptEnabled(); /** + * Set SMS prompt property, enabled or not + */ + void setSMSPromptEnabled(boolean bool); + + /** * Send a system stored text message. * * This is used for sending a previously sent, but failed-to-send, message or |