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

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

Issue 631153003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFEImage.h ('k') | Source/core/svg/properties/SVGAnimatedProperty.h » ('j') | 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 e30c178b68c7a58bd2da09fd9323ba336bd13473..1e611f0d676216d1f5409323303b0a4f45a8db88 100644
--- a/Source/core/svg/graphics/filters/SVGFilter.h
+++ b/Source/core/svg/graphics/filters/SVGFilter.h
@@ -32,15 +32,15 @@
namespace blink {
-class SVGFilter FINAL : public Filter {
+class SVGFilter final : public Filter {
public:
static PassRefPtr<SVGFilter> create(const IntRect&, const FloatRect&, const FloatRect&, bool);
- virtual float applyHorizontalScale(float value) const OVERRIDE;
- virtual float applyVerticalScale(float value) const OVERRIDE;
- virtual FloatPoint3D resolve3dPoint(const FloatPoint3D&) const OVERRIDE;
+ virtual float applyHorizontalScale(float value) const override;
+ virtual float applyVerticalScale(float value) const override;
+ virtual FloatPoint3D resolve3dPoint(const FloatPoint3D&) const override;
- virtual IntRect sourceImageRect() const OVERRIDE { return m_absoluteSourceDrawingRegion; }
+ virtual IntRect 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') | Source/core/svg/properties/SVGAnimatedProperty.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698