Index: third_party/WebKit/Source/core/svg/SVGAnimatedString.h |
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedString.h b/third_party/WebKit/Source/core/svg/SVGAnimatedString.h |
index e9da37c31ad8255101f6ec00d293fc6cb282e61f..4f4f484d5c95c63d3e6c8dd755fc4b9fca0b15f7 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedString.h |
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedString.h |
@@ -36,7 +36,7 @@ |
namespace blink { |
-class SVGAnimatedString final : public SVGAnimatedProperty<SVGString> { |
+class SVGAnimatedString : public SVGAnimatedProperty<SVGString> { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGString> initialValue) |
@@ -44,9 +44,9 @@ public: |
return adoptRefWillBeNoop(new SVGAnimatedString(contextElement, attributeName, initialValue)); |
} |
- String baseVal(); |
- void setBaseVal(String, ExceptionState&); |
- String animVal(); |
+ virtual String baseVal(); |
+ virtual void setBaseVal(const String&, ExceptionState&); |
+ virtual String animVal(); |
protected: |
SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGString> initialValue) |