Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1c84e7f5 authored by Jon Spivack's avatar Jon Spivack
Browse files

ServiceManagerProxy: New method implementations

This class only exists for UnsupportedAppUsage. These methods and implementations are required for compilation but should never be called.

Bug: 143108344
Test: Manual (compilation and boot)
Change-Id: I27111ae35ca57f7cb80b0439f78edd7f204408e9
parent 1dcfd692
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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.
     *