diff options
Diffstat (limited to 'telecomm/java/android/telecom/RemoteConnectionService.java')
-rw-r--r-- | telecomm/java/android/telecom/RemoteConnectionService.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java index dc0de0c462cf..b85382feae60 100644 --- a/telecomm/java/android/telecom/RemoteConnectionService.java +++ b/telecomm/java/android/telecom/RemoteConnectionService.java @@ -330,6 +330,13 @@ final class RemoteConnectionService { .setExtras(extras); } } + + @Override + public void onConnectionEvent(String callId, String event) { + if (mConnectionById.containsKey(callId)) { + findConnectionForAction(callId, "onConnectionEvent").onConnectionEvent(event); + } + } }; private final ConnectionServiceAdapterServant mServant = |