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

Commit a59da5da authored by Steve Kondik's avatar Steve Kondik
Browse files

Revert "libbinder: Export older version of enforceInterface symbol"

This reverts commit cb318e88.
parent cb318e88
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -69,7 +69,6 @@ public:
    // passed in.
    bool                enforceInterface(const String16& interface,
                                         IPCThreadState* threadState = NULL) const;
    bool                enforceInterface(const String16& interface) const;
    bool                checkInterface(IBinder*) const;

    void                freeData();
+1 −7
Original line number Diff line number Diff line
@@ -452,15 +452,9 @@ status_t Parcel::writeInterfaceToken(const String16& interface)
    return writeString16(interface);
}

bool Parcel::enforceInterface(const String16& interface) const
{
	return enforceInterface(interface,NULL);
}


bool Parcel::checkInterface(IBinder* binder) const
{
    return enforceInterface(binder->getInterfaceDescriptor(),NULL);
    return enforceInterface(binder->getInterfaceDescriptor());
}

bool Parcel::enforceInterface(const String16& interface,