| Index: sky/engine/platform/graphics/ImageDecodingStoreTest.cpp
|
| diff --git a/sky/engine/platform/graphics/ImageDecodingStoreTest.cpp b/sky/engine/platform/graphics/ImageDecodingStoreTest.cpp
|
| index c0650fcfff2f62839964e465a9b51f2f02124c60..0e153c86ef6439c1907afc5e6e42704d9c23e54d 100644
|
| --- a/sky/engine/platform/graphics/ImageDecodingStoreTest.cpp
|
| +++ b/sky/engine/platform/graphics/ImageDecodingStoreTest.cpp
|
| @@ -38,7 +38,7 @@ namespace {
|
|
|
| class ImageDecodingStoreTest : public ::testing::Test, public MockImageDecoderClient {
|
| public:
|
| - virtual void SetUp()
|
| + void SetUp() override
|
| {
|
| ImageDecodingStore::instance()->setCacheLimitInBytes(1024 * 1024);
|
| m_data = SharedBuffer::create();
|
| @@ -46,17 +46,17 @@ public:
|
| m_decodersDestroyed = 0;
|
| }
|
|
|
| - virtual void TearDown()
|
| + void TearDown() override
|
| {
|
| ImageDecodingStore::instance()->clear();
|
| }
|
|
|
| - virtual void decoderBeingDestroyed()
|
| + void decoderBeingDestroyed() override
|
| {
|
| ++m_decodersDestroyed;
|
| }
|
|
|
| - virtual void frameBufferRequested()
|
| + void frameBufferRequested() override
|
| {
|
| // Decoder is never used by ImageDecodingStore.
|
| ASSERT_TRUE(false);
|
|
|