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

Unified Diff: Source/core/layout/svg/LayoutSVGResourceGradient.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/layout/svg/LayoutSVGResourceGradient.h
diff --git a/Source/core/layout/svg/LayoutSVGResourceGradient.h b/Source/core/layout/svg/LayoutSVGResourceGradient.h
index e6835d335a3df4fe8a363c3c0720a7b0e7af9621..003933918c6acaa5ed7dd969b3aab73fb2dd52c0 100644
--- a/Source/core/layout/svg/LayoutSVGResourceGradient.h
+++ b/Source/core/layout/svg/LayoutSVGResourceGradient.h
@@ -42,12 +42,12 @@ class LayoutSVGResourceGradient : public LayoutSVGResourcePaintServer {
public:
explicit LayoutSVGResourceGradient(SVGGradientElement*);
- virtual void removeAllClientsFromCache(bool markForInvalidation = true) override final;
- virtual void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override final;
+ void removeAllClientsFromCache(bool markForInvalidation = true) final;
+ void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) final;
- virtual SVGPaintServer preparePaintServer(const LayoutObject&) override final;
+ SVGPaintServer preparePaintServer(const LayoutObject&) final;
- virtual bool isChildAllowed(LayoutObject* child, const ComputedStyle&) const override final;
+ bool isChildAllowed(LayoutObject* child, const ComputedStyle&) const final;
protected:
void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const;
« no previous file with comments | « Source/core/layout/svg/LayoutSVGResourceFilterPrimitive.h ('k') | Source/core/layout/svg/LayoutSVGResourceLinearGradient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698