Merge "ServiceManagerNative: add getConnectionInfo" am: e731e209d3 am: 5ae740f8eb am: 5e69d9b1e9

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1823886

Change-Id: I50356d83f7e252296ee3e3f1eea5a3b833d2d04e
This commit is contained in:
Devin Moore
2021-09-22 17:11:57 +00:00
committed by Automerger Merge Worker

View File

@@ -98,6 +98,10 @@ class ServiceManagerProxy implements IServiceManager {
return mServiceManager.updatableViaApex(name); return mServiceManager.updatableViaApex(name);
} }
public ConnectionInfo getConnectionInfo(String name) throws RemoteException {
return mServiceManager.getConnectionInfo(name);
}
public void registerClientCallback(String name, IBinder service, IClientCallback cb) public void registerClientCallback(String name, IBinder service, IClientCallback cb)
throws RemoteException { throws RemoteException {
throw new RemoteException(); throw new RemoteException();