Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1171)

Unified Diff: third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.cpp

Issue 2856993002: Fix comments after Blink rename (Closed)
Patch Set: Re-aligning comment Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_)

Powered by Google App Engine
This is Rietveld 408576698