| Index: Source/core/svg/SVGAltGlyphElement.cpp
|
| diff --git a/Source/core/svg/SVGAltGlyphElement.cpp b/Source/core/svg/SVGAltGlyphElement.cpp
|
| index 10de48173dcfc2b2b9d047e61f1f3cfb072c148b..b170919f5b998332e42cbc7f100578579c56d358 100644
|
| --- a/Source/core/svg/SVGAltGlyphElement.cpp
|
| +++ b/Source/core/svg/SVGAltGlyphElement.cpp
|
| @@ -54,9 +54,9 @@ PassRefPtr<SVGAltGlyphElement> SVGAltGlyphElement::create(Document& document)
|
| return adoptRef(new SVGAltGlyphElement(document));
|
| }
|
|
|
| -void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionState& es)
|
| +void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionState& exceptionState)
|
| {
|
| - es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| const AtomicString& SVGAltGlyphElement::glyphRef() const
|
| @@ -64,9 +64,9 @@ const AtomicString& SVGAltGlyphElement::glyphRef() const
|
| return fastGetAttribute(SVGNames::glyphRefAttr);
|
| }
|
|
|
| -void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionState& es)
|
| +void SVGAltGlyphElement::setFormat(const AtomicString&, ExceptionState& exceptionState)
|
| {
|
| - es.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NoModificationAllowedError);
|
| }
|
|
|
| const AtomicString& SVGAltGlyphElement::format() const
|
|
|