| Index: Source/core/svg/SVGColor.cpp
|
| diff --git a/Source/core/svg/SVGColor.cpp b/Source/core/svg/SVGColor.cpp
|
| index 60853d68c81b40494179110b8e87c87b35031839..788ecf8d9f4756aea6dc1c19498bdbf0afb17d32 100644
|
| --- a/Source/core/svg/SVGColor.cpp
|
| +++ b/Source/core/svg/SVGColor.cpp
|
| @@ -54,21 +54,21 @@ Color SVGColor::colorFromRGBColorString(const String& colorString)
|
| return Color();
|
| }
|
|
|
| -void SVGColor::setRGBColor(const String&, ExceptionState& es)
|
| +void SVGColor::setRGBColor(const String&, ExceptionState& exceptionState)
|
| {
|
| // The whole SVGColor interface is deprecated in SVG 1.1 (2nd edition).
|
| // The setters are the most problematic part so we remove the support for those first.
|
| - es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| -void SVGColor::setRGBColorICCColor(const String&, const String&, ExceptionState& es)
|
| +void SVGColor::setRGBColorICCColor(const String&, const String&, ExceptionState& exceptionState)
|
| {
|
| - es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| -void SVGColor::setColor(unsigned short, const String&, const String&, ExceptionState& es)
|
| +void SVGColor::setColor(unsigned short, const String&, const String&, ExceptionState& exceptionState)
|
| {
|
| - es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| String SVGColor::customCSSText() const
|
|
|