| Index: Source/core/svg/SVGRectElement.h
|
| diff --git a/Source/core/svg/SVGRectElement.h b/Source/core/svg/SVGRectElement.h
|
| index 4fe5a77dd7f89879c94cf5f24dc7a8155d9d3185..19ddcde4fba66e10ea01bf2a38f5ada2d8769a09 100644
|
| --- a/Source/core/svg/SVGRectElement.h
|
| +++ b/Source/core/svg/SVGRectElement.h
|
| @@ -42,14 +42,14 @@ public:
|
| private:
|
| explicit SVGRectElement(Document&);
|
|
|
| - virtual bool isValid() const { return SVGTests::isValid(); }
|
| + virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); }
|
| virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
|
|
|
| bool isSupportedAttribute(const QualifiedName&);
|
| virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
|
| - virtual void svgAttributeChanged(const QualifiedName&);
|
| + virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE;
|
|
|
| - virtual bool selfHasRelativeLengths() const;
|
| + virtual bool selfHasRelativeLengths() const OVERRIDE;
|
|
|
| virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
|
|
|
|
|