diff options
author | Evan Charlton <evanc@google.com> | 2014-04-11 15:55:43 -0700 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-04-11 16:02:15 -0700 |
commit | 3c7fbb2214368689e8868ca1f37c3490429c4b05 (patch) | |
tree | a633e4dbe6803639ff86e64ccc4788b0e1c1ec07 /telecomm/java/com | |
parent | 792e41fe2a26cc7d41d192bd29b267550afbcdb5 (diff) | |
download | frameworks_base-3c7fbb2214368689e8868ca1f37c3490429c4b05.zip frameworks_base-3c7fbb2214368689e8868ca1f37c3490429c4b05.tar.gz frameworks_base-3c7fbb2214368689e8868ca1f37c3490429c4b05.tar.bz2 |
Expose a method to cancel an outgoing call
Expose a method which lets CallServiceSelectors abort an outgoing call.
Bug: 13980764
Change-Id: Id0c608729cb5de3e2a37b2538f1f61ed94bcb31b
Diffstat (limited to 'telecomm/java/com')
-rw-r--r-- | telecomm/java/com/android/internal/telecomm/ICallServiceSelectorAdapter.aidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecomm/ICallServiceSelectorAdapter.aidl b/telecomm/java/com/android/internal/telecomm/ICallServiceSelectorAdapter.aidl index 1b281b9..ad71e3c 100644 --- a/telecomm/java/com/android/internal/telecomm/ICallServiceSelectorAdapter.aidl +++ b/telecomm/java/com/android/internal/telecomm/ICallServiceSelectorAdapter.aidl @@ -35,5 +35,7 @@ oneway interface ICallServiceSelectorAdapter { String callId, in List<CallServiceDescriptor> selectedCallServiceDescriptors); + void cancelOutgoingCall(String callId); + void setHandoffInfo(String callId, in Uri handle, in Bundle extras); } |