diff options
author | Bryce Lee <brycelee@google.com> | 2015-11-17 15:13:29 -0800 |
---|---|---|
committer | Bryce Lee <brycelee@google.com> | 2015-11-17 15:13:29 -0800 |
commit | cac50775b2e13c293d224b8d09feb15f9ee40c3f (patch) | |
tree | cf33f354e6fdf4fe9f4d44ba3f8c1af565e322d2 /telecomm/java/com | |
parent | cb8749c903d29fd04944550b5f34cc6120b69232 (diff) | |
download | frameworks_base-cac50775b2e13c293d224b8d09feb15f9ee40c3f.zip frameworks_base-cac50775b2e13c293d224b8d09feb15f9ee40c3f.tar.gz frameworks_base-cac50775b2e13c293d224b8d09feb15f9ee40c3f.tar.bz2 |
Add callback for connections to be notified when the ringer is silenced.
Bug: 25644529
Change-Id: Ie7dc9028cf6243d98b2d87ca4c8b3ffcd31e3676
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 dd253cf..8a54add 100644 --- a/telecomm/java/com/android/internal/telecom/IConnectionService.aidl +++ b/telecomm/java/com/android/internal/telecom/IConnectionService.aidl @@ -54,6 +54,8 @@ oneway interface IConnectionService { void disconnect(String callId); + void silence(String callId); + void hold(String callId); void unhold(String callId); |