commit | a01b656e2f068646d787adb272377819871642a9 | [log] [tgz] |
---|---|---|
author | Yorke Lee <yorkelee@google.com> | Mon Nov 10 12:41:05 2014 -0800 |
committer | Yorke Lee <yorkelee@google.com> | Mon Nov 10 15:05:38 2014 -0800 |
tree | 16196ea2875939c512c4f9b4ca132f582575b276 | |
parent | d547a4b030c5e99023b8c3d7336c77f1f68686a9 [diff] |
Set appropriate capabilities to TestConference This allows the "Manage conference" screen to show up correctly for test conference calls Bug: 18269622 Change-Id: I8467654a8158c5da8c354057f613f122b22a0ed3
diff --git a/tests/src/com/android/server/telecom/testapps/TestConnectionService.java b/tests/src/com/android/server/telecom/testapps/TestConnectionService.java index a474213..8a97106 100644 --- a/tests/src/com/android/server/telecom/testapps/TestConnectionService.java +++ b/tests/src/com/android/server/telecom/testapps/TestConnectionService.java
@@ -77,7 +77,11 @@ public TestConference(Connection a, Connection b) { super(null); - + setCapabilities( + PhoneCapabilities.SUPPORT_HOLD | + PhoneCapabilities.HOLD | + PhoneCapabilities.MUTE | + PhoneCapabilities.MANAGE_CONFERENCE); addConnection(a); addConnection(b);