diff options
| author | 2019-12-23 20:04:33 +0000 | |
|---|---|---|
| committer | 2019-12-23 20:04:33 +0000 | |
| commit | b2d8eb58a29c331c23c57712af936a670cb61b33 (patch) | |
| tree | 85e562c872fda15686002d5b096a3dde235b834f | |
| parent | 3831174548696ddc819ae8463d9cb488d581873c (diff) | |
| parent | 1c84e7f5b6f8215db8c23ebd786da05660373228 (diff) | |
Merge "ServiceManagerProxy: New method implementations"
| -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. * |