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

Commit 7009a75d authored by Devin Moore's avatar Devin Moore Committed by Automerger Merge Worker
Browse files

Merge "Move BaseInterface typedef from protected to public" am: 96fcd27e am:...

Merge "Move BaseInterface typedef from protected to public" am: 96fcd27e am: af1e289f am: 85c224c2 am: eb150869 am: af344922

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2133628



Change-Id: I3f299140d400cb7ef4009d22ad56845fa92d7797
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents be397870 af344922
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();
};