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

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

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/ContentLayerDelegate.h ('k') | Source/platform/graphics/DecodingImageGenerator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/CrossfadeGeneratedImage.h
diff --git a/Source/platform/graphics/CrossfadeGeneratedImage.h b/Source/platform/graphics/CrossfadeGeneratedImage.h
index d95151735e5658909c277cb126e877cc83a9e888..92ec0ae516bbb8ace1bd00ffaa15e0898f8b69a6 100644
--- a/Source/platform/graphics/CrossfadeGeneratedImage.h
+++ b/Source/platform/graphics/CrossfadeGeneratedImage.h
@@ -41,19 +41,19 @@ public:
return adoptRef(new CrossfadeGeneratedImage(fromImage, toImage, percentage, crossfadeSize, size));
}
- 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 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 OVERRIDE { return m_crossfadeSize; }
+ virtual IntSize size() const override { return m_crossfadeSize; }
protected:
virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&,
- CompositeOperator, WebBlendMode) OVERRIDE;
+ CompositeOperator, WebBlendMode) override;
virtual void drawPattern(GraphicsContext*, const FloatRect&,
const FloatSize&, const FloatPoint&, CompositeOperator,
- const FloatRect&, WebBlendMode, const IntSize& repeatSpacing) OVERRIDE;
+ const FloatRect&, WebBlendMode, const IntSize& repeatSpacing) override;
CrossfadeGeneratedImage(Image* fromImage, Image* toImage, float percentage, IntSize crossfadeSize, const IntSize&);
« no previous file with comments | « Source/platform/graphics/ContentLayerDelegate.h ('k') | Source/platform/graphics/DecodingImageGenerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698