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

Side by Side Diff: third_party/WebKit/Source/platform/image-decoders/bmp/BMPImageDecoderTest.cpp

Issue 2700123003: DO NOT COMMIT: Results of running old (current) 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "platform/image-decoders/bmp/BMPImageDecoder.h" 5 #include "platform/image-decoders/bmp/BMPImageDecoder.h"
6 6
7 #include <memory>
7 #include "platform/SharedBuffer.h" 8 #include "platform/SharedBuffer.h"
8 #include "platform/image-decoders/ImageDecoderTestHelpers.h" 9 #include "platform/image-decoders/ImageDecoderTestHelpers.h"
9 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
10 #include "wtf/PtrUtil.h" 11 #include "wtf/PtrUtil.h"
11 #include <memory>
12 12
13 namespace blink { 13 namespace blink {
14 14
15 namespace { 15 namespace {
16 16
17 std::unique_ptr<ImageDecoder> createDecoder() { 17 std::unique_ptr<ImageDecoder> createDecoder() {
18 return WTF::wrapUnique( 18 return WTF::wrapUnique(
19 new BMPImageDecoder(ImageDecoder::AlphaNotPremultiplied, 19 new BMPImageDecoder(ImageDecoder::AlphaNotPremultiplied,
20 ColorBehavior::transformToTargetForTesting(), 20 ColorBehavior::transformToTargetForTesting(),
21 ImageDecoder::noDecodedImageByteLimit)); 21 ImageDecoder::noDecodedImageByteLimit));
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // This test verifies that calling SharedBuffer::mergeSegmentsIntoBuffer() does 80 // This test verifies that calling SharedBuffer::mergeSegmentsIntoBuffer() does
81 // not break BMP decoding at a critical point: in between a call to decode the 81 // not break BMP decoding at a critical point: in between a call to decode the
82 // size (when BMPImageDecoder stops while it may still have input data to 82 // size (when BMPImageDecoder stops while it may still have input data to
83 // read) and a call to do a full decode. 83 // read) and a call to do a full decode.
84 TEST(BMPImageDecoderTest, mergeBuffer) { 84 TEST(BMPImageDecoderTest, mergeBuffer) {
85 const char* bmpFile = "/LayoutTests/images/resources/lenna.bmp"; 85 const char* bmpFile = "/LayoutTests/images/resources/lenna.bmp";
86 testMergeBuffer(&createDecoder, bmpFile); 86 testMergeBuffer(&createDecoder, bmpFile);
87 } 87 }
88 88
89 } // namespace blink 89 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698