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

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

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.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.h b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.h
index cf67d9eb03c14f141e6c66a0b7f8de8e0fd88ca0..47fa9e59301d3dc35e4f507a5e7596afeca3b682 100644
--- a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.h
+++ b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageReader.h
@@ -62,7 +62,7 @@ class PLATFORM_EXPORT PNGImageReader final {
struct FrameInfo {
// The offset where the frame data of this frame starts.
size_t start_offset;
- // The number of bytes that contain frame data, starting at startOffset.
+ // The number of bytes that contain frame data, starting at start_offset.
size_t byte_length;
size_t duration;
IntRect frame_rect;
@@ -134,12 +134,12 @@ class PLATFORM_EXPORT PNGImageReader final {
std::unique_ptr<png_byte[]> interlace_buffer_;
- // Value used for the byteLength of a FrameInfo struct to indicate that it is
- // the first frame and its byteLength is not yet known. 1 is a safe value
- // since the byteLength field of a frame is at least 12.
+ // Value used for the byte_length of a FrameInfo struct to indicate that it is
+ // the first frame and its byte_length is not yet known. 1 is a safe value
+ // since the byte_length field of a frame is at least 12.
static constexpr size_t kFirstFrameIndicator = 1;
- // Stores information about a frame until it can be pushed to |m_frameInfo|
+ // Stores information about a frame until it can be pushed to |frame_info|
// once all the frame data has been read from the stream.
FrameInfo new_frame_;
Vector<FrameInfo, 1> frame_info_;

Powered by Google App Engine
This is Rietveld 408576698