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

Unified Diff: Source/core/rendering/svg/RenderSVGResourcePattern.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/core/rendering/svg/RenderSVGResourcePattern.h
diff --git a/Source/core/rendering/svg/RenderSVGResourcePattern.h b/Source/core/rendering/svg/RenderSVGResourcePattern.h
index c89748c3987e44718901273d54221387d359ce77..13221cfa559c31cb1bfc173a05b441be4a6c2cf4 100644
--- a/Source/core/rendering/svg/RenderSVGResourcePattern.h
+++ b/Source/core/rendering/svg/RenderSVGResourcePattern.h
@@ -42,19 +42,19 @@ public:
AffineTransform transform;
};
-class RenderSVGResourcePattern FINAL : public RenderSVGResourceContainer {
+class RenderSVGResourcePattern final : public RenderSVGResourceContainer {
public:
explicit RenderSVGResourcePattern(SVGPatternElement*);
- virtual const char* renderName() const OVERRIDE { return "RenderSVGResourcePattern"; }
+ virtual const char* renderName() const override { return "RenderSVGResourcePattern"; }
- virtual void removeAllClientsFromCache(bool markForInvalidation = true) OVERRIDE;
- virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true) OVERRIDE;
+ virtual void removeAllClientsFromCache(bool markForInvalidation = true) override;
+ virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true) override;
- virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, RenderSVGResourceModeFlags) OVERRIDE;
- virtual void postApplyResource(GraphicsContext*) OVERRIDE;
+ virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, RenderSVGResourceModeFlags) override;
+ virtual void postApplyResource(GraphicsContext*) override;
- virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resourceType; }
+ virtual RenderSVGResourceType resourceType() const override { return s_resourceType; }
static const RenderSVGResourceType s_resourceType;
private:
« no previous file with comments | « Source/core/rendering/svg/RenderSVGResourceMasker.h ('k') | Source/core/rendering/svg/RenderSVGResourceRadialGradient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698