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

Unified Diff: Source/platform/graphics/CrossfadeGeneratedImage.h

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/CrossfadeGeneratedImage.h
diff --git a/Source/platform/graphics/CrossfadeGeneratedImage.h b/Source/platform/graphics/CrossfadeGeneratedImage.h
index 8d96298f1269aa7c559ae308e7dc3f16de8e9520..5be008518e3fa86b895c0c2028ebbee46b4437b3 100644
--- a/Source/platform/graphics/CrossfadeGeneratedImage.h
+++ b/Source/platform/graphics/CrossfadeGeneratedImage.h
@@ -43,12 +43,12 @@ public:
return adoptRef(new CrossfadeGeneratedImage(fromImage, toImage, percentage, crossfadeSize, size));
}
- virtual void setContainerSize(const IntSize&) { }
- virtual bool usesContainerSize() const { return false; }
- virtual bool hasRelativeWidth() const { return false; }
- virtual bool hasRelativeHeight() const { return false; }
+ virtual void setContainerSize(const IntSize&) OVERRIDE { }
+ virtual bool usesContainerSize() const OVERRIDE { return false; }
+ virtual bool hasRelativeWidth() const OVERRIDE { return false; }
+ virtual bool hasRelativeHeight() const OVERRIDE { return false; }
- virtual IntSize size() const { return m_crossfadeSize; }
+ virtual IntSize size() const OVERRIDE { return m_crossfadeSize; }
protected:
virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&,
« no previous file with comments | « Source/platform/graphics/Canvas2DImageBufferSurface.h ('k') | Source/platform/graphics/DecodingImageGenerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698