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

Commit 96fcd27e authored by Devin Moore's avatar Devin Moore Committed by Gerrit Code Review
Browse files

Merge "Move BaseInterface typedef from protected to public"

parents f43e3592 3e3161d7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -72,9 +72,9 @@ class BnInterface : public INTERFACE, public BBinder
public:
    virtual sp<IInterface>      queryLocalInterface(const String16& _descriptor);
    virtual const String16&     getInterfaceDescriptor() const;
    typedef INTERFACE BaseInterface;

protected:
    typedef INTERFACE           BaseInterface;
    virtual IBinder*            onAsBinder();
};

@@ -85,9 +85,9 @@ class BpInterface : public INTERFACE, public BpRefBase
{
public:
    explicit                    BpInterface(const sp<IBinder>& remote);
    typedef INTERFACE BaseInterface;

protected:
    typedef INTERFACE           BaseInterface;
    virtual IBinder*            onAsBinder();
};