| Index: Source/core/svg/properties/SVGTransformListPropertyTearOff.h
|
| diff --git a/Source/core/svg/properties/SVGTransformListPropertyTearOff.h b/Source/core/svg/properties/SVGTransformListPropertyTearOff.h
|
| index d57f8872efacbc14a89b48e292c8147aeeaffb61..2ec007fcfd83fadcef59c32066db34406e87a359 100644
|
| --- a/Source/core/svg/properties/SVGTransformListPropertyTearOff.h
|
| +++ b/Source/core/svg/properties/SVGTransformListPropertyTearOff.h
|
| @@ -39,21 +39,21 @@ public:
|
| return adoptRef(new SVGTransformListPropertyTearOff(animatedProperty, role, values, wrappers));
|
| }
|
|
|
| - PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionState& es)
|
| + PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionState& exceptionState)
|
| {
|
| ASSERT(m_values);
|
| if (!matrix) {
|
| - es.throwUninformativeAndGenericDOMException(TypeMismatchError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(TypeMismatchError);
|
| return 0;
|
| }
|
| return SVGPropertyTearOff<SVGTransform>::create(m_values->createSVGTransformFromMatrix(matrix->propertyReference()));
|
| }
|
|
|
| - PassRefPtr<SVGPropertyTearOff<SVGTransform> > consolidate(ExceptionState& es)
|
| + PassRefPtr<SVGPropertyTearOff<SVGTransform> > consolidate(ExceptionState& exceptionState)
|
| {
|
| ASSERT(m_values);
|
| ASSERT(m_wrappers);
|
| - if (!canAlterList(es))
|
| + if (!canAlterList(exceptionState))
|
| return 0;
|
|
|
| ASSERT(m_values->size() == m_wrappers->size());
|
|
|