| Index: Source/core/svg/SVGPreserveAspectRatio.cpp
|
| diff --git a/Source/core/svg/SVGPreserveAspectRatio.cpp b/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| index 9430d9f7a2145ae7fe1e413ea2d1762b2fcd532b..5e9de721a007b34f77ac772ed776825aece5de2c 100644
|
| --- a/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| +++ b/Source/core/svg/SVGPreserveAspectRatio.cpp
|
| @@ -37,20 +37,20 @@ SVGPreserveAspectRatio::SVGPreserveAspectRatio()
|
| {
|
| }
|
|
|
| -void SVGPreserveAspectRatio::setAlign(unsigned short align, ExceptionState& es)
|
| +void SVGPreserveAspectRatio::setAlign(unsigned short align, ExceptionState& exceptionState)
|
| {
|
| if (align == SVG_PRESERVEASPECTRATIO_UNKNOWN || align > SVG_PRESERVEASPECTRATIO_XMAXYMAX) {
|
| - es.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| return;
|
| }
|
|
|
| m_align = static_cast<SVGPreserveAspectRatioType>(align);
|
| }
|
|
|
| -void SVGPreserveAspectRatio::setMeetOrSlice(unsigned short meetOrSlice, ExceptionState& es)
|
| +void SVGPreserveAspectRatio::setMeetOrSlice(unsigned short meetOrSlice, ExceptionState& exceptionState)
|
| {
|
| if (meetOrSlice == SVG_MEETORSLICE_UNKNOWN || meetOrSlice > SVG_MEETORSLICE_SLICE) {
|
| - es.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| return;
|
| }
|
|
|
|
|