diff options
Diffstat (limited to 'core/java/android/os/ServiceManagerNative.java')
| -rw-r--r-- | core/java/android/os/ServiceManagerNative.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/java/android/os/ServiceManagerNative.java b/core/java/android/os/ServiceManagerNative.java index 7991cd46b65c..f641731fa08f 100644 --- a/core/java/android/os/ServiceManagerNative.java +++ b/core/java/android/os/ServiceManagerNative.java @@ -76,6 +76,16 @@ class ServiceManagerProxy implements IServiceManager { return mServiceManager.listServices(dumpPriority); } + public void registerForNotifications(String name, IServiceCallback cb) + throws RemoteException { + throw new RemoteException(); + } + + public void unregisterForNotifications(String name, IServiceCallback cb) + throws RemoteException { + throw new RemoteException(); + } + /** * Same as mServiceManager but used by apps. * |
