diff options
author | Bryce Lee <brycelee@google.com> | 2015-08-10 07:40:42 -0700 |
---|---|---|
committer | Bryce Lee <brycelee@google.com> | 2015-08-10 15:06:59 +0000 |
commit | 8d41d1d4fdbf070ad391eae820a5e42a326a7771 (patch) | |
tree | bb32b3ddee915a82e5c98a5a749d5b209c7d4313 /telecomm | |
parent | 0c4999c27948ab8a49440abcd60a25fa50ba60a9 (diff) | |
download | frameworks_base-8d41d1d4fdbf070ad391eae820a5e42a326a7771.zip frameworks_base-8d41d1d4fdbf070ad391eae820a5e42a326a7771.tar.gz frameworks_base-8d41d1d4fdbf070ad391eae820a5e42a326a7771.tar.bz2 |
add call back intents for clearing missed calls and calling back.
Change-Id: Ib81fecc21c5491f975fa7c44f4e5984a4b3f8e7f
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecom/TelecomManager.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/TelecomManager.java b/telecomm/java/android/telecom/TelecomManager.java index 232bf0f..8779462 100644 --- a/telecomm/java/android/telecom/TelecomManager.java +++ b/telecomm/java/android/telecom/TelecomManager.java @@ -393,6 +393,22 @@ public class TelecomManager { "android.telecom.extra.NOTIFICATION_PHONE_NUMBER"; /** + * The intent to clear missed calls. + * @hide + */ + @SystemApi + public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT = + "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT"; + + /** + * The intent to call back a missed call. + * @hide + */ + @SystemApi + public static final String EXTRA_CALL_BACK_INTENT = + "android.telecom.extra.CALL_BACK_INTENT"; + + /** * The following 4 constants define how properties such as phone numbers and names are * displayed to the user. */ |