Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1685)

Unified Diff: sky/engine/platform/graphics/ImageDecodingStoreTest.cpp

Issue 988693005: Chromium roll (https://codereview.chromium.org/976353002) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fixed bad android build patch Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/platform/BUILD.gn ('k') | sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « sky/engine/platform/BUILD.gn ('k') | sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698