| Index: third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGEnumeration.h b/third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| index 62758d74f267c4dd135ba28c0f5bbba67f96a230..3eda15a623d032302b6759537db729e8006909ef 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGEnumeration.h
|
| @@ -31,12 +31,11 @@
|
| #ifndef SVGEnumeration_h
|
| #define SVGEnumeration_h
|
|
|
| +#include "core/svg/SVGParsingError.h"
|
| #include "core/svg/properties/SVGProperty.h"
|
|
|
| namespace blink {
|
|
|
| -class ExceptionState;
|
| -
|
| class SVGEnumerationBase : public SVGPropertyBase {
|
| public:
|
| typedef std::pair<unsigned short, String> StringEntry;
|
| @@ -56,7 +55,7 @@ public:
|
| PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const String&) const override;
|
|
|
| String valueAsString() const override;
|
| - void setValueAsString(const String&, ExceptionState&);
|
| + SVGParsingError setValueAsString(const String&);
|
|
|
| void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
|
| void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> from, PassRefPtrWillBeRawPtr<SVGPropertyBase> to, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
|
|
|