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

Commit e512cd3d authored by Ray Essick's avatar Ray Essick Committed by Gerrit Code Review
Browse files

Merge "Move DataSourceUnwrapper to MidiIoWrapper class"

parents bd592dc6 c39661e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ MidiIoWrapper::MidiIoWrapper(int fd, off64_t offset, int64_t size) {
    mDataSource = nullptr;
}

class DataSourceUnwrapper {
class MidiIoWrapper::DataSourceUnwrapper {

public:
    explicit DataSourceUnwrapper(CDataSource *csource) {
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@
namespace android {

struct CDataSource;
class DataSourceUnwrapper;

class MidiIoWrapper {
public:
@@ -43,6 +42,7 @@ private:
    int mFd;
    off64_t mBase;
    int64_t  mLength;
    class DataSourceUnwrapper;
    DataSourceUnwrapper *mDataSource;
    EAS_FILE mEasFile;
};