diff options
author | Libin.Tang@motorola.com <w16529@motorola.com> | 2014-08-23 18:12:51 -0500 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2014-08-26 20:15:33 +0000 |
commit | c47b18fb2523b65189f88c22a4291233f00bfb4a (patch) | |
tree | e68108871abf322b5527cd03af65d223c142ac1b /telephony | |
parent | 1dc0f364010083057bdf104cc6e27c870cae8702 (diff) | |
download | frameworks_base-c47b18fb2523b65189f88c22a4291233f00bfb4a.zip frameworks_base-c47b18fb2523b65189f88c22a4291233f00bfb4a.tar.gz frameworks_base-c47b18fb2523b65189f88c22a4291233f00bfb4a.tar.bz2 |
IMS: modify sendDtmf interface.
Bug: 17282921
Change-Id: If96f209e91db420e089d429bb5c7a0f9882b4057
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/ims/internal/IImsCallSession.aidl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/telephony/java/com/android/ims/internal/IImsCallSession.aidl b/telephony/java/com/android/ims/internal/IImsCallSession.aidl index ba4cb01..98b2d8a 100644 --- a/telephony/java/com/android/ims/internal/IImsCallSession.aidl +++ b/telephony/java/com/android/ims/internal/IImsCallSession.aidl @@ -16,6 +16,7 @@ package com.android.ims.internal; +import android.os.Message; import com.android.ims.ImsCallProfile; import com.android.ims.ImsStreamMediaProfile; import com.android.ims.internal.IImsCallSessionListener; @@ -206,10 +207,10 @@ interface IImsCallSession { * event 0 ~ 9 maps to decimal value 0 ~ 9, '*' to 10, '#' to 11, event 'A' ~ 'D' to 12 ~ 15, * and event flash to 16. Currently, event flash is not supported. * - * @param code the DTMF to send. Value 0 to 15 (inclusive) are valid inputs. - * @param duration the interval in milli-seconds between the DTMFs + * @param c the DTMF to send. '0' ~ '9', 'A' ~ 'D', '*', '#' are valid inputs. + * @param result. */ - void sendDtmf(int code, int duration); + void sendDtmf(char c, in Message result); /** * Sends an USSD message. |