| Index: Source/platform/image-decoders/FastSharedBufferReader.h
|
| diff --git a/Source/platform/image-decoders/FastSharedBufferReader.h b/Source/platform/image-decoders/FastSharedBufferReader.h
|
| index 1add43037db0de7d83767a74ac8eb40fcea09ce9..254476b435615daeabbfc07fce8ded953dd8729d 100644
|
| --- a/Source/platform/image-decoders/FastSharedBufferReader.h
|
| +++ b/Source/platform/image-decoders/FastSharedBufferReader.h
|
| @@ -70,6 +70,8 @@ public:
|
| }
|
|
|
| private:
|
| + void getSomeDataInternal(unsigned dataPosition);
|
| +
|
| RefPtr<SharedBuffer> m_data;
|
|
|
| // Caches the last segment of |m_data| accessed, since subsequent reads are
|
| @@ -77,7 +79,7 @@ private:
|
| const char* m_segment;
|
| size_t m_segmentLength;
|
|
|
| - // Data position in |m_data| pointed by |m_segment|.
|
| + // Data position in |m_data| pointed to by |m_segment|.
|
| size_t m_dataPosition;
|
| };
|
|
|
|
|