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

Unified Diff: Source/core/svg/graphics/filters/SVGFilter.h

Issue 134593005: Update SVG classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/core/svg/graphics/filters/SVGFEImage.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/graphics/filters/SVGFilter.h
diff --git a/Source/core/svg/graphics/filters/SVGFilter.h b/Source/core/svg/graphics/filters/SVGFilter.h
index ad30b39218c92803f1c74868c2ea58e053d9edb0..98fbe2e9945fd4e946538ab7b68d80e8a001fd92 100644
--- a/Source/core/svg/graphics/filters/SVGFilter.h
+++ b/Source/core/svg/graphics/filters/SVGFilter.h
@@ -32,14 +32,14 @@
namespace WebCore {
-class SVGFilter : public Filter {
+class SVGFilter FINAL : public Filter {
public:
static PassRefPtr<SVGFilter> create(const AffineTransform&, const FloatRect&, const FloatRect&, const FloatRect&, bool);
- virtual float applyHorizontalScale(float value) const;
- virtual float applyVerticalScale(float value) const;
+ virtual float applyHorizontalScale(float value) const OVERRIDE;
+ virtual float applyVerticalScale(float value) const OVERRIDE;
- virtual FloatRect sourceImageRect() const { return m_absoluteSourceDrawingRegion; }
+ virtual FloatRect sourceImageRect() const OVERRIDE { return m_absoluteSourceDrawingRegion; }
FloatRect targetBoundingBox() const { return m_targetBoundingBox; }
private:
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFEImage.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698