summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2018-03-07 15:22:58 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-03-07 15:22:58 +0000
commitecb46b610cc5d28c96e92d3de5e41b74425021d6 (patch)
treee782cd88bf5576f977343991d81d9b08dee0486e
parent29da54462da50296bc8db89eab42438d8bf7f641 (diff)
parent31f0e0bd2510732249be5bded744cbb37015b8c3 (diff)
downloadbase-ecb46b610cc5d28c96e92d3de5e41b74425021d6.tar.gz
Merge "Ensure start of call properties are propagated to RemoteConnection."
-rw-r--r--telecomm/java/android/telecom/RemoteConnectionService.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java
index 59ce590858ee..bb4b483de326 100644
--- a/telecomm/java/android/telecom/RemoteConnectionService.java
+++ b/telecomm/java/android/telecom/RemoteConnectionService.java
@@ -93,6 +93,10 @@ final class RemoteConnectionService {
// failure on the providing end, so immediately mark it destroyed
connection.setDestroyed();
}
+ connection.setStatusHints(parcel.getStatusHints());
+ connection.setIsVoipAudioMode(parcel.getIsVoipAudioMode());
+ connection.setRingbackRequested(parcel.isRingbackRequested());
+ connection.putExtras(parcel.getExtras());
}
}