diff options
author | Nancy Chen <nancychen@google.com> | 2014-12-15 16:12:50 -0800 |
---|---|---|
committer | Nancy Chen <nancychen@google.com> | 2014-12-16 12:53:04 -0800 |
commit | 27d1c2d148fe377ca0d2744f0f85789a42c8f808 (patch) | |
tree | 6e20feb1ad731ce53ef88220de6b6a394550ef4e /telecomm/java/android/telecom/RemoteConnectionService.java | |
parent | 1f28a6a571a9b4ff78d85e2b62a30d77ce986d7b (diff) |
Pass onPostDialChar call back from Telephony to Telecom.
Add plumbing to alert Telecom every time a character is processed after
the post dial wait state (the processing happens in Telephony).
Bug: 18644688
Change-Id: I487d76aa9c959ca528c6377374aa35c2d0b4a803
Diffstat (limited to 'telecomm/java/android/telecom/RemoteConnectionService.java')
-rw-r--r-- | telecomm/java/android/telecom/RemoteConnectionService.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java index 906ecaaa8277..073dcd5fbb72 100644 --- a/telecomm/java/android/telecom/RemoteConnectionService.java +++ b/telecomm/java/android/telecom/RemoteConnectionService.java @@ -223,6 +223,12 @@ final class RemoteConnectionService { } @Override + public void onPostDialChar(String callId, char nextChar) { + findConnectionForAction(callId, "onPostDialChar") + .onPostDialChar(nextChar); + } + + @Override public void queryRemoteConnectionServices(RemoteServiceCallback callback) { // Not supported from remote connection service. } |