| Index: media/mp4/box_reader.h
|
| diff --git a/media/mp4/box_reader.h b/media/mp4/box_reader.h
|
| index 211d99ac6109cb2cb58bf904570343834f53a518..1c701290585131f2208341c696a1633ef67e6577 100644
|
| --- a/media/mp4/box_reader.h
|
| +++ b/media/mp4/box_reader.h
|
| @@ -54,8 +54,9 @@ class MEDIA_EXPORT BufferReader {
|
| // Advance the stream by this many bytes.
|
| bool SkipBytes(int nbytes) WARN_UNUSED_RESULT;
|
|
|
| - int size() { return size_; }
|
| - int pos() { return pos_; }
|
| + const uint8* data() const { return buf_; }
|
| + int size() const { return size_; }
|
| + int pos() const { return pos_; }
|
|
|
| protected:
|
| const uint8* buf_;
|
|
|