diff options
| -rw-r--r-- | core/java/android/os/ServiceManagerNative.java | 9 |
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. * |