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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp

Issue 2385993002: Rewrap comments to 80 columns in Source/platform/image-decoders/. (Closed)
Patch Set: Rewrite comment Created 4 years, 2 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/JPEGImageDecoderTest.cpp
diff --git a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp
index 61154a3ac750afd591742be0ef14fc6965785c50..361fb2d51904772d69291488c81c180d6b19eb93 100644
--- a/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp
+++ b/third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp
@@ -87,7 +87,8 @@ void readYUV(size_t maxDecodedBytes,
std::unique_ptr<ImageDecoder> decoder = createDecoder(maxDecodedBytes);
decoder->setData(data.get(), true);
- // Setting a dummy ImagePlanes object signals to the decoder that we want to do YUV decoding.
+ // Setting a dummy ImagePlanes object signals to the decoder that we want to
+ // do YUV decoding.
std::unique_ptr<ImagePlanes> dummyImagePlanes = wrapUnique(new ImagePlanes());
decoder->setImagePlanes(std::move(dummyImagePlanes));
@@ -137,9 +138,9 @@ TEST(JPEGImageDecoderTest, tooBig) {
EXPECT_TRUE(decoder->failed());
}
-// Tests that JPEG decoder can downsample image whose width and height are multiple of 8,
-// to ensure we compute the correct decodedSize and pass correct parameters to libjpeg to
-// output image with the expected size.
+// Tests that the JPEG decoder can downsample image whose width and height are
+// multiples of 8, to ensure we compute the correct decodedSize and pass correct
+// parameters to libjpeg to output the image with the expected size.
TEST(JPEGImageDecoderTest, downsampleImageSizeMultipleOf8) {
const char* jpegFile =
"/LayoutTests/fast/images/resources/lenna.jpg"; // 256x256
@@ -181,8 +182,8 @@ TEST(JPEGImageDecoderTest, downsampleImageSizeMultipleOf8) {
EXPECT_EQ(224u, outputHeight);
}
-// Tests that JPEG decoder can downsample image whose width and height are not multiple of 8.
-// Ensures that we round decodedSize and scale_num using the same algorithm as that of libjpeg.
+// Tests that JPEG decoder can downsample image whose width and height are not
+// multiple of 8. Ensures that we round using the same algorithm as libjpeg.
TEST(JPEGImageDecoderTest, downsampleImageSizeNotMultipleOf8) {
const char* jpegFile =
"/LayoutTests/fast/images/resources/icc-v2-gbr.jpg"; // 275x207

Powered by Google App Engine
This is Rietveld 408576698