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

Unified Diff: Source/platform/graphics/DeferredImageDecoderTest.cpp

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 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 | « Source/platform/graphics/DecodingImageGenerator.h ('k') | Source/platform/graphics/GeneratedImage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/DeferredImageDecoderTest.cpp
diff --git a/Source/platform/graphics/DeferredImageDecoderTest.cpp b/Source/platform/graphics/DeferredImageDecoderTest.cpp
index 69d2caf85b8bc2fbe43d794eaacf1b6ed6a28946..e6a9aaaf78441ad4ff63b07187a9419f5c60eeee 100644
--- a/Source/platform/graphics/DeferredImageDecoderTest.cpp
+++ b/Source/platform/graphics/DeferredImageDecoderTest.cpp
@@ -69,7 +69,7 @@ struct Rasterizer {
class DeferredImageDecoderTest : public ::testing::Test, public MockImageDecoderClient {
public:
- virtual void SetUp() OVERRIDE
+ virtual void SetUp() override
{
ImageDecodingStore::instance()->setCacheLimitInBytes(1024 * 1024);
DeferredImageDecoder::setEnabled(true);
@@ -88,42 +88,42 @@ public:
m_decodedSize = m_actualDecoder->size();
}
- virtual void TearDown() OVERRIDE
+ virtual void TearDown() override
{
ImageDecodingStore::instance()->clear();
}
- virtual void decoderBeingDestroyed() OVERRIDE
+ virtual void decoderBeingDestroyed() override
{
m_actualDecoder = 0;
}
- virtual void frameBufferRequested() OVERRIDE
+ virtual void frameBufferRequested() override
{
++m_frameBufferRequestCount;
}
- virtual size_t frameCount() OVERRIDE
+ virtual size_t frameCount() override
{
return m_frameCount;
}
- virtual int repetitionCount() const OVERRIDE
+ virtual int repetitionCount() const override
{
return m_repetitionCount;
}
- virtual ImageFrame::Status status() OVERRIDE
+ virtual ImageFrame::Status status() override
{
return m_status;
}
- virtual float frameDuration() const OVERRIDE
+ virtual float frameDuration() const override
{
return m_frameDuration;
}
- virtual IntSize decodedSize() const OVERRIDE
+ virtual IntSize decodedSize() const override
{
return m_decodedSize;
}
« no previous file with comments | « Source/platform/graphics/DecodingImageGenerator.h ('k') | Source/platform/graphics/GeneratedImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698