summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jon Spivack <spivack@google.com> 2019-12-23 12:11:22 -0800
committer android-build-merger <android-build-merger@google.com> 2019-12-23 12:11:22 -0800
commitb88261b982813bcbd8457b45e12e79ba3434a9c2 (patch)
treeaf4458b4e931263612c2b1446a188a072e45a370
parentec7c91a9c0fd559bd2fa702226c66d574cab2142 (diff)
parentb2d8eb58a29c331c23c57712af936a670cb61b33 (diff)
Merge "ServiceManagerProxy: New method implementations"
am: b2d8eb58a2 Change-Id: Ib572a6702fbf4aca5277f2d385a3ce6359d71851
-rw-r--r--core/java/android/os/ServiceManagerNative.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/os/ServiceManagerNative.java b/core/java/android/os/ServiceManagerNative.java
index 124b6c6f7377..94671c8f317d 100644
--- a/core/java/android/os/ServiceManagerNative.java
+++ b/core/java/android/os/ServiceManagerNative.java
@@ -90,6 +90,15 @@ class ServiceManagerProxy implements IServiceManager {
throw new RemoteException();
}
+ public void registerClientCallback(String name, IBinder service, IClientCallback cb)
+ throws RemoteException {
+ throw new RemoteException();
+ }
+
+ public void tryUnregisterService(String name, IBinder service) throws RemoteException {
+ throw new RemoteException();
+ }
+
/**
* Same as mServiceManager but used by apps.
*