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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.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/jpeg/JPEGImageDecoder.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
index 16b70c6861405dab3969201e9b85dc1b3512536e..1849f9f21b50e5830b1a40c981fa8bd55ce9310c 100644
--- a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp
@@ -150,8 +150,9 @@ static bool checkExifHeader(jpeg_saved_marker_ptr marker,
marker->data[2] == 'i' && marker->data[3] == 'f' &&
marker->data[4] == '\0'
// data[5] is a fill byte
- && ((marker->data[6] == 'I' && marker->data[7] == 'I') ||
- (marker->data[6] == 'M' && marker->data[7] == 'M'))))
+ &&
+ ((marker->data[6] == 'I' && marker->data[7] == 'I') ||
+ (marker->data[6] == 'M' && marker->data[7] == 'M'))))
return false;
isBigEndian = marker->data[6] == 'M';

Powered by Google App Engine
This is Rietveld 408576698