Merge "Track BufferIterator changes in libcore"

This commit is contained in:
Neil Fuller
2016-12-12 17:23:18 +00:00
committed by Gerrit Code Review

View File

@@ -39,6 +39,11 @@ public class BridgeBufferIterator extends BufferIterator {
mByteBuffer.position(offset);
}
@Override
public int pos() {
return mByteBuffer.position();
}
@Override
public void skip(int byteCount) {
int newPosition = mByteBuffer.position() + byteCount;