diff options
author | Bryce Lee <brycelee@google.com> | 2015-08-28 16:38:02 -0700 |
---|---|---|
committer | Bryce Lee <brycelee@google.com> | 2015-08-28 16:38:02 -0700 |
commit | 8190168077aa3ef02a1f5a3a636130d83c4eec1d (patch) | |
tree | 433dfc7e92284aef2372ad562230053ca94847b9 /telecomm/java/com | |
parent | 65d438563a16ae4bfaeedb8bac7ec5484fbff11c (diff) | |
download | frameworks_base-8190168077aa3ef02a1f5a3a636130d83c4eec1d.zip frameworks_base-8190168077aa3ef02a1f5a3a636130d83c4eec1d.tar.gz frameworks_base-8190168077aa3ef02a1f5a3a636130d83c4eec1d.tar.bz2 |
Add capability for a connection hand rejection text response.
Change-Id: Id90417736bed7ab8750144ccaf3c7b449ec832b8
Diffstat (limited to 'telecomm/java/com')
-rw-r--r-- | telecomm/java/com/android/internal/telecom/IConnectionService.aidl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl index c2e8530..dd253cf 100644 --- a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl +++ b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl @@ -50,6 +50,8 @@ oneway interface IConnectionService { void reject(String callId); + void rejectWithMessage(String callId, String message); + void disconnect(String callId); void hold(String callId); |