| Index: Source/core/svg/SVGViewElement.h
|
| diff --git a/Source/core/svg/SVGViewElement.h b/Source/core/svg/SVGViewElement.h
|
| index 5ee72f38498545a57a52248f66acf2ef80c86805..87edd33b0dca1d03e107a1741f4275716e37473d 100644
|
| --- a/Source/core/svg/SVGViewElement.h
|
| +++ b/Source/core/svg/SVGViewElement.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace blink {
|
|
|
| -class SVGViewElement FINAL : public SVGElement,
|
| +class SVGViewElement final : public SVGElement,
|
| public SVGFitToViewBox,
|
| public SVGZoomAndPan {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -49,9 +49,9 @@ private:
|
|
|
| // FIXME: svgAttributeChanged missing.
|
| bool isSupportedAttribute(const QualifiedName&);
|
| - virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| + virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
|
|
|
| - virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; }
|
| + virtual bool rendererIsNeeded(const RenderStyle&) override { return false; }
|
|
|
| RefPtr<SVGStaticStringList> m_viewTarget;
|
| };
|
|
|