| Index: Source/core/dom/DOMURL.cpp
|
| diff --git a/Source/core/dom/DOMURL.cpp b/Source/core/dom/DOMURL.cpp
|
| index b07d9aac848d910f8e0f9d6c870521fa6ee8530e..a61485e96a0d6a7af999cf0be9e19b27d0b1f46e 100644
|
| --- a/Source/core/dom/DOMURL.cpp
|
| +++ b/Source/core/dom/DOMURL.cpp
|
| @@ -40,15 +40,15 @@
|
|
|
| namespace WebCore {
|
|
|
| -DOMURL::DOMURL(const String& url, const KURL& base, ExceptionState& es)
|
| +DOMURL::DOMURL(const String& url, const KURL& base, ExceptionState& exceptionState)
|
| {
|
| ScriptWrappable::init(this);
|
| if (!base.isValid())
|
| - es.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("URL", "Invalid base URL"));
|
| + exceptionState.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("URL", "Invalid base URL"));
|
|
|
| m_url = KURL(base, url);
|
| if (!m_url.isValid())
|
| - es.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("URL", "Invalid URL"));
|
| + exceptionState.throwDOMException(SyntaxError, ExceptionMessages::failedToConstruct("URL", "Invalid URL"));
|
| }
|
|
|
| void DOMURL::setInput(const String& value)
|
|
|