Index: sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp |
diff --git a/sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp b/sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp |
index bc9794b90e57703900ede7e32858504a8b22600f..cbc407458a750b01674c82962cbf1a2f68f00eb0 100644 |
--- a/sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp |
+++ b/sky/engine/platform/graphics/gpu/DrawingBufferTest.cpp |
@@ -205,7 +205,7 @@ public: |
class DrawingBufferTest : public Test { |
protected: |
- virtual void SetUp() |
+ void SetUp() override |
{ |
RefPtr<FakeContextEvictionManager> contextEvictionManager = adoptRef(new FakeContextEvictionManager()); |
OwnPtr<WebGraphicsContext3DForTests> context = adoptPtr(new WebGraphicsContext3DForTests); |
@@ -443,7 +443,7 @@ TEST_F(DrawingBufferTest, verifyInsertAndWaitSyncPointCorrectly) |
class DrawingBufferImageChromiumTest : public DrawingBufferTest { |
protected: |
- virtual void SetUp() |
+ void SetUp() override |
{ |
RefPtr<FakeContextEvictionManager> contextEvictionManager = adoptRef(new FakeContextEvictionManager()); |
OwnPtr<WebGraphicsContext3DForTests> context = adoptPtr(new WebGraphicsContext3DForTests); |
@@ -456,7 +456,7 @@ protected: |
testing::Mock::VerifyAndClearExpectations(webContext()); |
} |
- virtual void TearDown() |
+ void TearDown() override |
{ |
RuntimeEnabledFeatures::setWebGLImageChromiumEnabled(false); |
} |