OLD | NEW |
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 Loading... |
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 |
OLD | NEW |