| Index: Source/platform/graphics/DeferredImageDecoderTest.cpp
|
| diff --git a/Source/platform/graphics/DeferredImageDecoderTest.cpp b/Source/platform/graphics/DeferredImageDecoderTest.cpp
|
| index 884232b1d0c3c9038ead3ed1e450b559eb6bee96..28063d4fc2d7f36b793666551dbc06ad1d371277 100644
|
| --- a/Source/platform/graphics/DeferredImageDecoderTest.cpp
|
| +++ b/Source/platform/graphics/DeferredImageDecoderTest.cpp
|
| @@ -72,7 +72,7 @@ class DeferredImageDecoderTest : public ::testing::Test, public MockImageDecoder
|
| public:
|
| virtual void SetUp() override
|
| {
|
| - ImageDecodingStore::instance()->setCacheLimitInBytes(1024 * 1024);
|
| + ImageDecodingStore::instance().setCacheLimitInBytes(1024 * 1024);
|
| DeferredImageDecoder::setEnabled(true);
|
| m_data = SharedBuffer::create(whitePNG, sizeof(whitePNG));
|
| m_frameCount = 1;
|
| @@ -91,7 +91,7 @@ public:
|
|
|
| virtual void TearDown() override
|
| {
|
| - ImageDecodingStore::instance()->clear();
|
| + ImageDecodingStore::instance().clear();
|
| }
|
|
|
| virtual void decoderBeingDestroyed() override
|
|
|