diff options
author | Etan Cohen <etancohen@google.com> | 2015-05-28 15:53:20 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2015-07-06 11:28:18 -0700 |
commit | b304fc0aafe067e422ce219ba5edb4bc7a68924c (patch) | |
tree | b3097c5008846aa4b5942a3a68831af2f88232d5 /telephony/java/com/android | |
parent | d8c2bbcf65bc830fcc53e8a8af4ca61440a7adbb (diff) | |
download | frameworks_base-b304fc0aafe067e422ce219ba5edb4bc7a68924c.zip frameworks_base-b304fc0aafe067e422ce219ba5edb4bc7a68924c.tar.gz frameworks_base-b304fc0aafe067e422ce219ba5edb4bc7a68924c.tar.bz2 |
Rename VoLTE/WFC enable API to available - add VT available API.
Renamed API to use consistent semantics: available refers to the current
state of the service rather then whether feature is enabled by device/carrier/
user.
Added VT API to match VoLTE/WFC.
Change-Id: Ifb31f123db77e731e75a982b8594168f59a289e7
Diffstat (limited to 'telephony/java/com/android')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 7dc71ed..6e50e9b 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -936,6 +936,7 @@ interface ITelephony { * @return {@code true} if the device supports hearing aid compatibility. */ boolean isHearingAidCompatibilitySupported(); + /** * Get IMS Registration Status */ @@ -943,15 +944,18 @@ interface ITelephony { /** * Returns the Status of Wi-Fi Calling - *@hide */ - boolean isWifiCallingEnabled(); + boolean isWifiCallingAvailable(); + + /** + * Returns the Status of Volte + */ + boolean isVolteAvailable(); /** - * Returns the Status of Volte - *@hide + * Returns the Status of VT (video telephony) */ - boolean isVolteEnabled(); + boolean isVideoTelephonyAvailable(); /** * Returns the unique device ID of phone, for example, the IMEI for @@ -980,7 +984,6 @@ interface ITelephony { /** * Return the modem activity info. - *@hide */ ModemActivityInfo getModemActivityInfo(); } |