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

Unified Diff: Source/platform/graphics/ImageFrameGeneratorTest.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
Index: Source/platform/graphics/ImageFrameGeneratorTest.cpp
diff --git a/Source/platform/graphics/ImageFrameGeneratorTest.cpp b/Source/platform/graphics/ImageFrameGeneratorTest.cpp
index 0d5390c08189ce95fc5ee750437683fc499d3232..e49be9b60581d1cf76f96d6f1e1251709b8e6013 100644
--- a/Source/platform/graphics/ImageFrameGeneratorTest.cpp
+++ b/Source/platform/graphics/ImageFrameGeneratorTest.cpp
@@ -50,7 +50,7 @@ SkImageInfo imageInfo()
class ImageFrameGeneratorTest : public ::testing::Test, public MockImageDecoderClient {
public:
- virtual void SetUp() OVERRIDE
+ virtual void SetUp() override
{
ImageDecodingStore::instance()->setCacheLimitInBytes(1024 * 1024);
m_data = SharedBuffer::create();
@@ -61,31 +61,31 @@ public:
m_status = ImageFrame::FrameEmpty;
}
- virtual void TearDown() OVERRIDE
+ virtual void TearDown() override
{
ImageDecodingStore::instance()->clear();
}
- virtual void decoderBeingDestroyed() OVERRIDE
+ virtual void decoderBeingDestroyed() override
{
++m_decodersDestroyed;
}
- virtual void frameBufferRequested() OVERRIDE
+ virtual void frameBufferRequested() override
{
++m_frameBufferRequestCount;
}
- virtual ImageFrame::Status status() OVERRIDE
+ virtual ImageFrame::Status status() override
{
ImageFrame::Status currentStatus = m_status;
m_status = m_nextFrameStatus;
return currentStatus;
}
- virtual size_t frameCount() OVERRIDE { return 1; }
- virtual int repetitionCount() const OVERRIDE { return cAnimationNone; }
- virtual float frameDuration() const OVERRIDE { return 0; }
+ virtual size_t frameCount() override { return 1; }
+ virtual int repetitionCount() const override { return cAnimationNone; }
+ virtual float frameDuration() const override { return 0; }
protected:
void useMockImageDecoderFactory()
« no previous file with comments | « Source/platform/graphics/ImageFrameGenerator.cpp ('k') | Source/platform/graphics/ImageLayerChromiumTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698