summaryrefslogtreecommitdiffstats
path: root/telephony/java/com
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2014-02-11 22:32:21 -0800
committerSailesh Nepal <sail@google.com>2014-02-11 22:32:21 -0800
commit1bd7876d76167922f38d78747c5696c82020c1ea (patch)
treeda9b5857b68001bb0786d57bd0d59aad0457d020 /telephony/java/com
parent512b28309d3ee5dd506e62fb14913047b6049236 (diff)
downloadframeworks_base-1bd7876d76167922f38d78747c5696c82020c1ea.zip
frameworks_base-1bd7876d76167922f38d78747c5696c82020c1ea.tar.gz
frameworks_base-1bd7876d76167922f38d78747c5696c82020c1ea.tar.bz2
Add Wi-Fi calling state setting to telephony interfaces
Change-Id: I01029ade0eb1ff981cb92a536d042a02129a053f
Diffstat (limited to 'telephony/java/com')
-rw-r--r--telephony/java/com/android/internal/telephony/ITelephony.aidl14
1 files changed, 14 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl
index a22e6b6..3ff5a52 100644
--- a/telephony/java/com/android/internal/telephony/ITelephony.aidl
+++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl
@@ -425,4 +425,18 @@ interface ITelephony {
*/
void newIncomingThirdPartyCall(in ComponentName component, String callId,
String callerDisplayName);
+
+ /**
+ * Obtain the current state of Wi-Fi calling.
+ *
+ * @see android.telephony.TelephonyManager.WifiCallingChoices
+ */
+ int getWhenToMakeWifiCalls();
+
+ /**
+ * Set the current state of Wi-Fi calling.
+ *
+ * @see android.telephony.TelephonyManager.WifiCallingChoices
+ */
+ void setWhenToMakeWifiCalls(int state);
}