| Index: Source/core/svg/properties/SVGAnimatedEnumerationPropertyTearOff.h
|
| diff --git a/Source/core/svg/properties/SVGAnimatedEnumerationPropertyTearOff.h b/Source/core/svg/properties/SVGAnimatedEnumerationPropertyTearOff.h
|
| index e8a58ccb407c8165b7810eee0bba2a2e5d5077ac..962e7f3e2e05a6306d33cd5f723cd5bf2a4ad63d 100644
|
| --- a/Source/core/svg/properties/SVGAnimatedEnumerationPropertyTearOff.h
|
| +++ b/Source/core/svg/properties/SVGAnimatedEnumerationPropertyTearOff.h
|
| @@ -29,14 +29,14 @@ namespace WebCore {
|
| template<typename EnumType>
|
| class SVGAnimatedEnumerationPropertyTearOff : public SVGAnimatedStaticPropertyTearOff<unsigned> {
|
| public:
|
| - virtual void setBaseVal(const unsigned& property, ExceptionState& es)
|
| + virtual void setBaseVal(const unsigned& property, ExceptionState& exceptionState)
|
| {
|
| // All SVG enumeration values, that are allowed to be set via SVG DOM start with 1, 0 corresponds to unknown and is not settable through SVG DOM.
|
| if (!property || property > SVGPropertyTraits<EnumType>::highestEnumValue()) {
|
| - es.throwUninformativeAndGenericTypeError();
|
| + exceptionState.throwUninformativeAndGenericTypeError();
|
| return;
|
| }
|
| - SVGAnimatedStaticPropertyTearOff<unsigned>::setBaseVal(property, es);
|
| + SVGAnimatedStaticPropertyTearOff<unsigned>::setBaseVal(property, exceptionState);
|
| }
|
|
|
| static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property)
|
|
|