| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_canvas.reset(SkCanvas::NewRasterN32(100, 100)); | 81 m_canvas.reset(SkCanvas::NewRasterN32(100, 100)); |
| 82 ASSERT_TRUE(m_canvas); | 82 ASSERT_TRUE(m_canvas.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 |
| 92 { | 92 { |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 336 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
| 337 m_frameCount = 2; | 337 m_frameCount = 2; |
| 338 m_lazyDecoder->setData(*m_data, false); | 338 m_lazyDecoder->setData(*m_data, false); |
| 339 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 339 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
| 340 m_frameCount = 0; | 340 m_frameCount = 0; |
| 341 m_lazyDecoder->setData(*m_data, true); | 341 m_lazyDecoder->setData(*m_data, true); |
| 342 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); | 342 EXPECT_EQ(m_frameCount, m_lazyDecoder->frameCount()); |
| 343 } | 343 } |
| 344 | 344 |
| 345 } // namespace blink | 345 } // namespace blink |
| OLD | NEW |