Merge "Track BufferIterator changes in libcore" am: 021e8ff2af

am: 4ff3c27817

Change-Id: Ifc4c1ada0299b430a74d98d05b9331182adf0933
This commit is contained in:
Neil Fuller
2016-12-12 17:39:20 +00:00
committed by android-build-merger

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;