| Index: Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| diff --git a/Source/web/SharedWorkerRepositoryClientImpl.cpp b/Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| index 1cd04ffb532b5cad724d7defe08b10d529928b9f..db26874dbd3e194e0116ec2a8da06074178d0ffb 100644
|
| --- a/Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| +++ b/Source/web/SharedWorkerRepositoryClientImpl.cpp
|
| @@ -162,7 +162,7 @@ void SharedWorkerRepositoryClientImpl::connect(PassRefPtr<SharedWorker> worker,
|
| OwnPtr<WebSharedWorker> webWorker = adoptPtr(m_client->createSharedWorker(url, name, getId(document)));
|
| if (!webWorker) {
|
| // Existing worker does not match this url, so return an error back to the caller.
|
| - exceptionState.throwDOMException(URLMismatchError, ExceptionMessages::failedToConstruct("SharedWorker", "The location of the SharedWorker named '" + name + "' does not exactly match the provided URL ('" + url.elidedString() + "')."));
|
| + exceptionState.throwDOMException(URLMismatchError, "The location of the SharedWorker named '" + name + "' does not exactly match the provided URL ('" + url.elidedString() + "').");
|
| return;
|
| }
|
|
|
|
|