| Index: third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.cpp
|
| diff --git a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.cpp b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.cpp
|
| index b186ccb7dda874da8018a2ce2c8b5a58c883bb9b..f43cbdf5a3e78011a042d335d908f83db2170c2e 100644
|
| --- a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.cpp
|
| +++ b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.cpp
|
| @@ -109,7 +109,7 @@ PNGImageReader::~PNGImageReader() {
|
| // png friendly way, and pass it to libpng for decoding.
|
| //
|
| // Pre-conditions before using this:
|
| -// - |reader|.size() >= |readOffset| + |length|
|
| +// - |reader|.size() >= |read_offset| + |length|
|
| // - |buffer|.size() >= |length|
|
| // - |length| <= |kBufferSize|
|
| //
|
| @@ -598,7 +598,7 @@ bool PNGImageReader::ParseSize(const FastSharedBufferReader& reader) {
|
| }
|
| }
|
|
|
| - // Not enough data to call headerAvailable.
|
| + // Not enough data to call HeaderAvailable.
|
| return true;
|
| }
|
|
|
| @@ -616,7 +616,7 @@ const PNGImageReader::FrameInfo& PNGImageReader::GetFrameInfo(
|
| return frame_info_[index];
|
| }
|
|
|
| -// Extract the fcTL frame control info and store it in m_newFrame. The length
|
| +// Extract the fcTL frame control info and store it in new_frame_. The length
|
| // check on the fcTL data has been done by the calling code.
|
| bool PNGImageReader::ParseFrameInfo(const png_byte* data) {
|
| if (fctl_needs_dat_chunk_)
|
|
|