OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 public: | 71 public: |
72 virtual void SetUp() override | 72 virtual void SetUp() override |
73 { | 73 { |
74 ImageDecodingStore::instance()->setCacheLimitInBytes(1024 * 1024); | 74 ImageDecodingStore::instance()->setCacheLimitInBytes(1024 * 1024); |
75 DeferredImageDecoder::setEnabled(true); | 75 DeferredImageDecoder::setEnabled(true); |
76 m_data = SharedBuffer::create(whitePNG, sizeof(whitePNG)); | 76 m_data = SharedBuffer::create(whitePNG, sizeof(whitePNG)); |
77 OwnPtr<MockImageDecoder> decoder = MockImageDecoder::create(this); | 77 OwnPtr<MockImageDecoder> decoder = MockImageDecoder::create(this); |
78 m_actualDecoder = decoder.get(); | 78 m_actualDecoder = decoder.get(); |
79 m_actualDecoder->setSize(1, 1); | 79 m_actualDecoder->setSize(1, 1); |
80 m_lazyDecoder = DeferredImageDecoder::createForTesting(decoder.release()
); | 80 m_lazyDecoder = DeferredImageDecoder::createForTesting(decoder.release()
); |
81 m_surface.reset(SkSurface::NewRasterPMColor(100, 100)); | 81 m_surface.reset(SkSurface::NewRasterN32Premul(100, 100)); |
82 ASSERT_TRUE(m_surface.get()); | 82 ASSERT_TRUE(m_surface.get()); |
83 m_frameBufferRequestCount = 0; | 83 m_frameBufferRequestCount = 0; |
84 m_frameCount = 1; | 84 m_frameCount = 1; |
85 m_repetitionCount = cAnimationNone; | 85 m_repetitionCount = cAnimationNone; |
86 m_status = ImageFrame::FrameComplete; | 86 m_status = ImageFrame::FrameComplete; |
87 m_frameDuration = 0; | 87 m_frameDuration = 0; |
88 m_decodedSize = m_actualDecoder->size(); | 88 m_decodedSize = m_actualDecoder->size(); |
89 } | 89 } |
90 | 90 |
91 virtual void TearDown() override | 91 virtual void TearDown() override |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 337 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
338 m_frameCount = 2; | 338 m_frameCount = 2; |
339 m_lazyDecoder->setData(*m_data, false); | 339 m_lazyDecoder->setData(*m_data, false); |
340 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 340 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
341 m_frameCount = 0; | 341 m_frameCount = 0; |
342 m_lazyDecoder->setData(*m_data, true); | 342 m_lazyDecoder->setData(*m_data, true); |
343 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 343 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
344 } | 344 } |
345 | 345 |
346 } // namespace blink | 346 } // namespace blink |
OLD | NEW |