Chromium Code Reviews| Index: media/mp4/box_reader.h |
| diff --git a/media/mp4/box_reader.h b/media/mp4/box_reader.h |
| index 211d99ac6109cb2cb58bf904570343834f53a518..513950e087f7f353c9be69acced38fad6b9d8485 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_; }; |
|
ddorwin
2012/09/22 03:25:06
You don't need the last semicolon.
strobe_
2012/09/22 04:05:33
I just wanted to be sure that my statement was rea
|
| + int size() const { return size_; }; |
| + int pos() const { return pos_; }; |
| protected: |
| const uint8* buf_; |