summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Devin Moore <devinmoore@google.com> 2021-09-22 16:25:48 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2021-09-22 16:25:48 +0000
commite731e209d326b8e531d85a0deae611689e0afa3b (patch)
tree86d0a532ac1b2238dae5b26c275427bc3e68c018
parent996aab2adcd6d585bfdc068860dcaf903d056f83 (diff)
parente7864e38d179640ee629eb035f6caf66dc8b922c (diff)
Merge "ServiceManagerNative: add getConnectionInfo"
-rw-r--r--core/java/android/os/ServiceManagerNative.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/os/ServiceManagerNative.java b/core/java/android/os/ServiceManagerNative.java
index 755c35f4767a..3739040eef60 100644
--- a/core/java/android/os/ServiceManagerNative.java
+++ b/core/java/android/os/ServiceManagerNative.java
@@ -98,6 +98,10 @@ class ServiceManagerProxy implements IServiceManager {
return mServiceManager.updatableViaApex(name);
}
+ public ConnectionInfo getConnectionInfo(String name) throws RemoteException {
+ return mServiceManager.getConnectionInfo(name);
+ }
+
public void registerClientCallback(String name, IBinder service, IClientCallback cb)
throws RemoteException {
throw new RemoteException();