| Index: third_party/WebKit/Source/core/svg/SVGBoolean.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGBoolean.h b/third_party/WebKit/Source/core/svg/SVGBoolean.h
|
| index c5aef850e68a32293117863720658b6f01757f07..c04e5fb660bd7c3312eaec21e07d8511b22fa3df 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGBoolean.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGBoolean.h
|
| @@ -31,6 +31,7 @@
|
| #ifndef SVGBoolean_h
|
| #define SVGBoolean_h
|
|
|
| +#include "core/svg/SVGParsingError.h"
|
| #include "core/svg/properties/SVGPropertyHelper.h"
|
|
|
| namespace blink {
|
| @@ -49,7 +50,7 @@ public:
|
| PassRefPtrWillBeRawPtr<SVGBoolean> clone() const { return create(m_value); }
|
|
|
| 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;
|
|
|