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

Unified Diff: Source/core/rendering/svg/RenderSVGResourceGradient.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/RenderSVGResourceGradient.h
diff --git a/Source/core/rendering/svg/RenderSVGResourceGradient.h b/Source/core/rendering/svg/RenderSVGResourceGradient.h
index b56f26444c95b2dd2032071dcdaa39887a837d13..2c9a8d8d102b76a23c0ab3c4b96aab4d6ed8f356 100644
--- a/Source/core/rendering/svg/RenderSVGResourceGradient.h
+++ b/Source/core/rendering/svg/RenderSVGResourceGradient.h
@@ -45,11 +45,11 @@ class RenderSVGResourceGradient : public RenderSVGResourceContainer {
public:
explicit RenderSVGResourceGradient(SVGGradientElement*);
- virtual void removeAllClientsFromCache(bool markForInvalidation = true) OVERRIDE FINAL;
- virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true) OVERRIDE FINAL;
+ virtual void removeAllClientsFromCache(bool markForInvalidation = true) override final;
+ virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true) override final;
- virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, RenderSVGResourceModeFlags) OVERRIDE FINAL;
- virtual void postApplyResource(GraphicsContext*) OVERRIDE FINAL;
+ virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, RenderSVGResourceModeFlags) override final;
+ virtual void postApplyResource(GraphicsContext*) override final;
protected:
void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const;

Powered by Google App Engine
This is Rietveld 408576698