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

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

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/BitmapImage.h ('k') | Source/platform/graphics/BitmapPattern.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/BitmapImageTest.cpp
diff --git a/Source/platform/graphics/BitmapImageTest.cpp b/Source/platform/graphics/BitmapImageTest.cpp
index 19c0c3eb48d0ea9ada367686f33e0ec52fd8c47e..d9e87ed5ee6b96d14463a05511bf1cb6675fdeca 100644
--- a/Source/platform/graphics/BitmapImageTest.cpp
+++ b/Source/platform/graphics/BitmapImageTest.cpp
@@ -51,9 +51,9 @@ public:
{
m_lastDecodedSizeChangedDelta = delta;
}
- virtual void didDraw(const Image*) override { }
- virtual bool shouldPauseAnimation(const Image*) override { return false; }
- virtual void animationAdvanced(const Image*) override { }
+ void didDraw(const Image*) override { }
+ bool shouldPauseAnimation(const Image*) override { return false; }
+ void animationAdvanced(const Image*) override { }
virtual void changedInRect(const Image*, const IntRect&) { }
@@ -122,7 +122,7 @@ public:
}
protected:
- virtual void SetUp() override
+ void SetUp() override
{
DeferredImageDecoder::setEnabled(m_enableDeferredDecoding);
m_image = BitmapImage::create(&m_imageObserver);
« no previous file with comments | « Source/platform/graphics/BitmapImage.h ('k') | Source/platform/graphics/BitmapPattern.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698