Index: third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp |
diff --git a/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp b/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp |
index c6dacc993737a0be6681d11167782c99276d1835..98b5119d351fc8faea6637b8e8f572aad6103f4d 100644 |
--- a/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp |
+++ b/third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp |
@@ -638,7 +638,7 @@ BMPImageReader::ProcessingResult BMPImageReader::processRLEData() { |
if (!count) { |
switch (code) { |
case 0: // Magic token: EOL |
- // Skip any remaining pixels in this row. |
+ // Skip any remaining pixels in this row. |
if (m_coord.x() < m_parent->size().width()) |
m_buffer->setHasAlpha(true); |
moveBufferToNextRow(); |
@@ -647,7 +647,7 @@ BMPImageReader::ProcessingResult BMPImageReader::processRLEData() { |
break; |
case 1: // Magic token: EOF |
- // Skip any remaining pixels in the image. |
+ // Skip any remaining pixels in the image. |
if ((m_coord.x() < m_parent->size().width()) || |
(m_isTopDown ? (m_coord.y() < (m_parent->size().height() - 1)) |
: (m_coord.y() > 0))) |