Index: Source/core/svg/SVGFEComponentTransferElement.h |
diff --git a/Source/core/svg/SVGFEComponentTransferElement.h b/Source/core/svg/SVGFEComponentTransferElement.h |
index 534a0d61e212a7254f95e54e2687bc77fdb464cd..d869c509a03628e3cfdac37526cfa67071fd2211 100644 |
--- a/Source/core/svg/SVGFEComponentTransferElement.h |
+++ b/Source/core/svg/SVGFEComponentTransferElement.h |
@@ -26,7 +26,7 @@ |
namespace blink { |
-class SVGFEComponentTransferElement FINAL : public SVGFilterPrimitiveStandardAttributes { |
+class SVGFEComponentTransferElement final : public SVGFilterPrimitiveStandardAttributes { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
DECLARE_NODE_FACTORY(SVGFEComponentTransferElement); |
@@ -37,8 +37,8 @@ private: |
// FIXME: svgAttributeChanged missing. |
bool isSupportedAttribute(const QualifiedName&); |
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE; |
- virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) OVERRIDE; |
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override; |
+ virtual PassRefPtr<FilterEffect> build(SVGFilterBuilder*, Filter*) override; |
RefPtr<SVGAnimatedString> m_in1; |
}; |