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

Unified Diff: Source/core/rendering/svg/RenderSVGResourceMasker.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/RenderSVGResourceMasker.h
diff --git a/Source/core/rendering/svg/RenderSVGResourceMasker.h b/Source/core/rendering/svg/RenderSVGResourceMasker.h
index 477c9b83a85f3a57f6dd8e29e0690dc53bbd0015..0da0b040e9a8a584387044da7d000985adb37a46 100644
--- a/Source/core/rendering/svg/RenderSVGResourceMasker.h
+++ b/Source/core/rendering/svg/RenderSVGResourceMasker.h
@@ -35,15 +35,15 @@ namespace blink {
class DisplayList;
class GraphicsContext;
-class RenderSVGResourceMasker FINAL : public RenderSVGResourceContainer {
+class RenderSVGResourceMasker final : public RenderSVGResourceContainer {
public:
explicit RenderSVGResourceMasker(SVGMaskElement*);
virtual ~RenderSVGResourceMasker();
- virtual const char* renderName() const OVERRIDE { return "RenderSVGResourceMasker"; }
+ virtual const char* renderName() const override { return "RenderSVGResourceMasker"; }
- 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;
bool prepareEffect(RenderObject*, RenderStyle*, GraphicsContext*&);
void finishEffect(RenderObject*, GraphicsContext*&);
@@ -53,7 +53,7 @@ public:
SVGUnitTypes::SVGUnitType maskUnits() const { return toSVGMaskElement(element())->maskUnits()->currentValue()->enumValue(); }
SVGUnitTypes::SVGUnitType maskContentUnits() const { return toSVGMaskElement(element())->maskContentUnits()->currentValue()->enumValue(); }
- 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/RenderSVGResourceMarker.h ('k') | Source/core/rendering/svg/RenderSVGResourcePattern.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698