commit | 1952a36d0f29ec9e880d5228ba40a52def1af437 | [log] [tgz] |
---|---|---|
author | Pengquan Meng <mpq@google.com> | Mon Dec 04 18:22:50 2017 -0800 |
committer | Hall Liu <hallliu@google.com> | Tue Jan 09 10:51:11 2018 -0800 |
tree | 3c37f8e1e79f431834add2c04cd83163747d3610 | |
parent | 0a17b57d1ccbb1e8c91f3be2ddccebc41e4b98d3 [diff] |
Add connection service focus api to the fake CS This added a default implementation of connection service focus api to the fake ConnectionService to avoid the compiled error. Bug: 69651192 Test: manual Change-Id: I01ecc7f6a89f0d3794edd51f939a85d9a113a703 Merged-In: I01ecc7f6a89f0d3794edd51f939a85d9a113a703
diff --git a/tests/src/com/android/server/telecom/tests/ConnectionServiceFixture.java b/tests/src/com/android/server/telecom/tests/ConnectionServiceFixture.java index f4f83e3..27202cf 100644 --- a/tests/src/com/android/server/telecom/tests/ConnectionServiceFixture.java +++ b/tests/src/com/android/server/telecom/tests/ConnectionServiceFixture.java
@@ -355,6 +355,14 @@ } @Override + public void connectionServiceFocusLost(Session.Info sessionInfo) throws RemoteException { + } + + @Override + public void connectionServiceFocusGained(Session.Info sessionInfo) throws RemoteException { + } + + @Override public IBinder asBinder() { return this; }