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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoder.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/bmp/BMPImageDecoder.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoder.cpp
index 1f9e63a75b8fca6b2faff98d30044b7606fc7131..5666ef6a3b367ae10ae274c0b5a20eed2219b5a0 100644
--- a/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoder.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoder.cpp
@@ -65,7 +65,7 @@ void BMPImageDecoder::Decode(bool only_size) {
if (!DecodeHelper(only_size) && IsAllDataReceived())
SetFailed();
// If we're done decoding the image, we don't need the BMPImageReader
- // anymore. (If we failed, |m_reader| has already been cleared.)
+ // anymore. (If we failed, |reader_| has already been cleared.)
else if (!frame_buffer_cache_.IsEmpty() &&
(frame_buffer_cache_.front().GetStatus() ==
ImageFrame::kFrameComplete))
@@ -108,16 +108,16 @@ bool BMPImageDecoder::ProcessFileHeader(size_t& img_data_offset) {
// See if this is a bitmap filetype we understand.
enum {
BMAP = 0x424D, // "BM"
- // The following additional OS/2 2.x header values (see
+ // The following additional OS/2 2.x header values (see
// http://www.fileformat.info/format/os2bmp/egff.htm ) aren't widely
// decoded, and are unlikely to be in much use.
/*
- ICON = 0x4943, // "IC"
- POINTER = 0x5054, // "PT"
- COLORICON = 0x4349, // "CI"
- COLORPOINTER = 0x4350, // "CP"
- BITMAPARRAY = 0x4241, // "BA"
- */
+ ICON = 0x4943, // "IC"
+ POINTER = 0x5054, // "PT"
+ COLORICON = 0x4349, // "CI"
+ COLORPOINTER = 0x4350, // "CP"
+ BITMAPARRAY = 0x4241, // "BA"
+ */
};
return (file_type == BMAP) || SetFailed();
}

Powered by Google App Engine
This is Rietveld 408576698