| 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 4f4f484d5c95c63d3e6c8dd755fc4b9fca0b15f7..e9da37c31ad8255101f6ec00d293fc6cb282e61f 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 : public SVGAnimatedProperty<SVGString> {
|
| +class SVGAnimatedString final : public SVGAnimatedProperty<SVGString> {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtrWillBeRawPtr<SVGAnimatedString> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGString> initialValue)
|
| @@ -44,9 +44,9 @@
|
| return adoptRefWillBeNoop(new SVGAnimatedString(contextElement, attributeName, initialValue));
|
| }
|
|
|
| - virtual String baseVal();
|
| - virtual void setBaseVal(const String&, ExceptionState&);
|
| - virtual String animVal();
|
| + String baseVal();
|
| + void setBaseVal(String, ExceptionState&);
|
| + String animVal();
|
|
|
| protected:
|
| SVGAnimatedString(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGString> initialValue)
|
|
|