diff --git a/core/java/android/os/ServiceManagerNative.java b/core/java/android/os/ServiceManagerNative.java index 124b6c6f73779..94671c8f317da 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. *