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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageReader.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/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)))

Powered by Google App Engine
This is Rietveld 408576698